Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/upload-artifact from 3 to 4 #15

Merged
merged 1 commit into from
Jul 22, 2024
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/create-release-candidate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
chmod +x ./run.sh
rm go_tool_ios-upload go_tool_ios-upload.arm64
- name: Store Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Upload Tool Universal Binary
path: artifacts
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
ls -la artifacts

- name: Store Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Upload Tool Download
path: artifacts
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
cd build; zip -r "$DIR/xcframeworks.zip" xcframeworks

- name: Store XCFrameworks
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Embrace-Universal Build Artifacts
path: xcframeworks.zip
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
zip "$DIR/embrace_$RC_VERSION.zip" -r xcframeworks/*; cd -;

- name: Store Cocoapods Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Cocoapods Release Archive
path: embrace_${{ env.RC_VERSION }}.zip
Expand Down
Loading