Skip to content

Commit

Permalink
ci: Fix fastlane error in build action (#89)
Browse files Browse the repository at this point in the history
* Update build-app.yml
  • Loading branch information
sffxzzp authored Apr 11, 2024
1 parent b481035 commit 7090c83
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: sparkfabrik/android-build-action@v1.5.0
with:
project-path: .
output-path: app-debug.apk
fastlane-env: "debug"
ruby-version: "3.3.0"
- uses: actions/upload-artifact@v3
if: github.event_name == 'pull_request'
name: Upload app APK
Expand All @@ -35,7 +36,7 @@ jobs:
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: github.event_name != 'pull_request'
name: Upload signed app APK
with:
Expand Down

0 comments on commit 7090c83

Please sign in to comment.