Skip to content

Commit

Permalink
fix(ci): Fix use of deprecated v4 artifact uploader
Browse files Browse the repository at this point in the history
  • Loading branch information
Berstanio committed Feb 2, 2025
1 parent 20bfca7 commit 74ef50e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
zip natives-windows -@ < native-files-list
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: natives-windows.zip
path: natives-windows.zip
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
zip -r natives-ios -@ < native-files-list
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: natives-ios.zip
path: natives-ios.zip
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
zip natives-macos -@ < native-files-list
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: natives-macos.zip
path: natives-macos.zip
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
zip natives-linux -@ < native-files-list
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: natives-linux.zip
path: natives-linux.zip
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
zip natives-windows -@ < native-files-list
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: natives-windows.zip
path: natives-windows.zip
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
zip natives-android -@ < native-files-list
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: natives-android.zip
path: natives-android.zip
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
zip natives-linux -@ < native-files-list
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: natives-linux.zip
path: natives-linux.zip
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
zip natives-mac -@ < native-files-list
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: natives-mac.zip
path: natives-mac.zip
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
zip natives-windows -@ < native-files-list
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: natives-windows.zip
path: natives-windows.zip

0 comments on commit 74ef50e

Please sign in to comment.