Skip to content

Commit

Permalink
Fix yaml syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaanen committed Dec 11, 2023
1 parent 2a35a36 commit dd7f022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ jobs:
runs-on: ubuntu-latest
needs: [setup]
if: github.ref == 'refs/heads/master'
steps:

steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -75,6 +73,7 @@ jobs:

- name: Build debug APK
run: ./gradlew assembleRelease

- name: Sign app APK
uses: r0adkll/sign-android-release@v1
# ID used to access action output
Expand All @@ -85,6 +84,7 @@ jobs:
alias: ${{ secrets.SIGNING_KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}

- name: Upload APK artifact
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit dd7f022

Please sign in to comment.