Skip to content

Commit 7090c83

Browse files
authored
ci: Fix fastlane error in build action (#89)
* Update build-app.yml
1 parent b481035 commit 7090c83

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-app.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
submodules: 'recursive'
1818
- uses: sparkfabrik/android-build-action@v1.5.0
1919
with:
2020
project-path: .
2121
output-path: app-debug.apk
2222
fastlane-env: "debug"
23+
ruby-version: "3.3.0"
2324
- uses: actions/upload-artifact@v3
2425
if: github.event_name == 'pull_request'
2526
name: Upload app APK
@@ -35,7 +36,7 @@ jobs:
3536
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
3637
alias: ${{ secrets.ALIAS }}
3738
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
38-
- uses: actions/upload-artifact@v3
39+
- uses: actions/upload-artifact@v4
3940
if: github.event_name != 'pull_request'
4041
name: Upload signed app APK
4142
with:

0 commit comments

Comments
 (0)