Skip to content

Commit

Permalink
Update github actions release script
Browse files Browse the repository at this point in the history
  • Loading branch information
kamgurgul committed Nov 29, 2023
1 parent 59d1946 commit 68f0956
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
matrix:
format: [
{ type: "apk", command: "assembleRelease" },
{ type: "aab", os_version: "bundleRelease" }
{ type: "aab", command: "bundleRelease" }
]
steps:
- uses: actions/checkout@v3
Expand All @@ -59,12 +59,12 @@ jobs:
KEYSTORE_ALIAS: ${{ secrets.KEYSTORE_ALIAS }}
KEYSTORE_PASS: ${{ secrets.KEYSTORE_PASS }}
KEYSTORE_PATH: ${{ secrets.KEYSTORE_PATH }}
run: ./gradlew ${{ matrix.command }}
run: ./gradlew ${{ matrix.format.command }}
- name: Upload Build
uses: actions/upload-artifact@v3
with:
name: app-release.${{ matrix.type }}
path: app/build/outputs/${{ matrix.type }}/release/*.${{ matrix.type }}
path: app/build/outputs/${{ matrix.format.type }}/release/*.${{ matrix.format.type }}
release:
needs: build
permissions:
Expand Down

0 comments on commit 68f0956

Please sign in to comment.