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 9eb202f commit 59d1946
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ jobs:
run: |
echo $ENCODED_KEYSTORE > keystore-b64.txt
base64 -d keystore-b64.txt > $SIGNING_KEYSTORE_PATH
pwd
ls
- name: Build release
env:
KEYSTORE_ALIAS: ${{ secrets.KEYSTORE_ALIAS }}
Expand All @@ -65,8 +63,8 @@ jobs:
- name: Upload Build
uses: actions/upload-artifact@v3
with:
name: app-release.${{ matrix.format }}
path: app/build/outputs/${{ matrix.format }}/release/*.${{ matrix.format }}
name: app-release.${{ matrix.type }}
path: app/build/outputs/${{ matrix.type }}/release/*.${{ matrix.type }}
release:
needs: build
permissions:
Expand Down
1 change: 0 additions & 1 deletion buildSrc/src/main/java/SigningConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ object SigningConfig {
&& !System.getenv(KEY_ALIAS).isNullOrEmpty()
) {
println("Using system env variables for signing")
println("Keystore path: ${releaseProperties[KEY_PATH]}")
releaseProperties[KEY_PATH] = System.getenv(KEY_PATH)
releaseProperties[KEY_PASS] = System.getenv(KEY_PASS)
releaseProperties[KEY_ALIAS] = System.getenv(KEY_ALIAS)
Expand Down

0 comments on commit 59d1946

Please sign in to comment.