Skip to content

Commit

Permalink
Merge pull request #870 from ZeusWPI/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
niknetniko authored Jan 24, 2024
2 parents 9ddbb26 + 3eb60d8 commit 5ada98b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,27 +58,27 @@ jobs:
- name: Build APK
run: ./gradlew assembleRelease
- name: Upload store APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: hydra-store.apk
path: app/build/outputs/apk/store/release/app-store-release.apk
if-no-files-found: error
- name: Upload foss APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: hydra-foss.apk
path: app/build/outputs/apk/open/release/app-open-release.apk
if-no-files-found: error
- name: Build App Bundle
run: ./gradlew bundleRelease
- name: Upload store bundle
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: hydra-store.aab
path: app/build/outputs/bundle/storeRelease/app-store-release.aab
if-no-files-found: error
- name: Upload foss bundle
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: hydra-foss.aab
path: app/build/outputs/bundle/openRelease/app-open-release.aab
Expand Down

0 comments on commit 5ada98b

Please sign in to comment.