Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/upload-artifact from 3 to 4 #870

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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