Skip to content

Commit

Permalink
chore: Upgrade upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasbriere1 committed Feb 1, 2024
1 parent 4585ef6 commit 74d561a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-apk-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:
SMARTWAY_KEYSTORE_NAME: ${{ env.smartway_keystore_name }}

- name: Upload Apk
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Apk-${{ inputs.configuration }}
path: ${{ inputs.working-directory }}/android/app/build/outputs/apk/${{ inputs.configuration }}/${{ env.apk_name }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-apk-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:


- name: Download APK
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.apk-artifact-name }}
path: ${{ github.workspace }}/artifact/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-apk-soti.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:


- name: Download APK
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.apk-artifact-name }}
path: ${{ github.workspace }}/artifact/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-docker-upload-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
run: ${{ inputs.run_command }}

- name: upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifact_name }}
path: ${{ inputs.workdir }}/${{ inputs.artifact_path }}

0 comments on commit 74d561a

Please sign in to comment.