Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Upload lint results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: lint-results
path: app/build/reports/lint-results-*.html
Expand Down Expand Up @@ -90,13 +90,13 @@ jobs:
mv app/build/outputs/apk/release/app-release.apk app/build/outputs/apk/release/sms2webhook-${{ steps.version.outputs.VERSION_NAME }}-release-${{ steps.commit.outputs.COMMIT_SHORT }}.apk

- name: Upload Debug APK
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sms2webhook-debug-${{ steps.commit.outputs.BRANCH_NAME }}-${{ steps.commit.outputs.COMMIT_SHORT }}
path: app/build/outputs/apk/debug/sms2webhook-*.apk

- name: Upload Release APK
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sms2webhook-release-${{ steps.commit.outputs.BRANCH_NAME }}-${{ steps.commit.outputs.COMMIT_SHORT }}
path: app/build/outputs/apk/release/sms2webhook-*.apk
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ jobs:

- name: Upload Debug APK
if: ${{ inputs.build_type == 'debug' || inputs.build_type == 'both' }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sms2webhook-debug-manual-${{ steps.version.outputs.TIMESTAMP }}
path: sms2webhook-*-debug-*.apk
retention-days: 30

- name: Upload Release APK
if: ${{ inputs.build_type == 'release' || inputs.build_type == 'both' }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sms2webhook-release-manual-${{ steps.version.outputs.TIMESTAMP }}
path: sms2webhook-*-release-*.apk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sign-apk-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
rm -f keystore.jks keystore.p12

- name: Upload signed APK
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: signed-apk
path: app/build/outputs/apk/release/app-release-signed.apk
Loading