Skip to content

Commit

Permalink
CHANGE CI upload-artifact to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank1234 committed Aug 12, 2024
1 parent 13975eb commit 5d267a2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: ./gradlew test --stacktrace

- name: Upload Dev Debug APK to Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-${{ github.run_number }}-dev-debug-apk
path: |
Expand All @@ -27,7 +27,7 @@ jobs:
run: ./gradlew assembleProdDebug --stacktrace

- name: Upload Prod Debug APK to Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}_${{ github.run_number }}-prod-debug-apk
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: ./gradlew assembleProdRelease --stacktrace

- name: Upload Release APK to Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-${{ github.run_number }}-prod-release-apk
path: |
Expand All @@ -54,7 +54,7 @@ jobs:
run: ./gradlew bundleProdRelease --stacktrace

- name: Upload Release Bundle to Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-${{ github.run_number }}-prod-release-bundle
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: ./gradlew assembleProdRelease --stacktrace

- name: Upload Release APK to Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-${{ github.run_number }}-prod-release-apk
path: |
Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A template for creating Android projects at Q42.
- Crashlytics
1. Setup your signing key secrets for usage in automated builds, . Steps are described
in [CI / Automated Builds](#ci--automated-builds)
1. You probably want to enable the self-hosted runner, as described
1. You probably want to enable the self-hosted runner (our own, free and fast, mac-mini), as described
in [self hosted runner](#self-hosted-runner), when using Github Actions.
1. Setup/adjust uploads to [Firebase app distribution](#firebase-app-distribution).

Expand Down

0 comments on commit 5d267a2

Please sign in to comment.