Skip to content

Commit

Permalink
fix: actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqingchen committed Nov 1, 2024
1 parent bcc398c commit 51c0788
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assemble_android_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
KEYSTORE_FILE: ${{ github.workspace }}/android/app/${{ env.KEYSTORE_FILE }}
NODE_PATH: ${{ github.workspace }}/node_modules/.pnpm/node_modules:$NODE_PATH
- name: Upload Android Products
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: app-${{ env.BUILD_TYPE }}
path: ${{ github.workspace }}/android/app/build/outputs/apk/${{ env.BUILD_TYPE }}/app-${{ env.BUILD_TYPE }}.apk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/assemble_android_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
KEYSTORE_FILE: ${{ github.workspace }}/android/app/${{ env.KEYSTORE_FILE }}
NODE_PATH: ${{ github.workspace }}/node_modules/.pnpm/node_modules:$NODE_PATH
- name: Upload Android Products
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: app-${{ env.BUILD_TYPE }}
path: ${{ github.workspace }}/android/app/build/outputs/apk/${{ env.BUILD_TYPE }}/app-${{ env.BUILD_TYPE }}.apk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/assemble_ios_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
bundle update
bundle exec fastlane build_dev
- name: Upload Ios Products
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: app-${{ env.BUILD_TYPE }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/assemble_ios_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
bundle update
bundle exec fastlane build_release
- name: Upload Ios Products
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: app-${{ env.BUILD_TYPE }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/taro_playground.bundle_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Qr Image
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: bundle-qr-code
path: |
Expand Down

0 comments on commit 51c0788

Please sign in to comment.