chore(country-items): Update cart item model to include seller countr… #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gr4vy-Android release workflow | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Gradle Wrapper Validation | |
uses: gradle/actions/wrapper-validation@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Test | |
run: ./gradlew GravySDK:test | |
- name: Build Release AAR | |
run: ./gradlew assembleRelease | |
- name: Create Draft Release with Artifacts | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "GravySDK/build/outputs/aar/*.aar" | |
draft: true | |
token: ${{ secrets.GITHUB_TOKEN }} |