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 4.1.0 to 4.2.0 #29

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
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ jobs:
- run: tar -cvf Out/macOSRelease.tar -C target/release/bundle/osx/ $(ls target/release/bundle/osx/)
- run: tar -cvf OutDebugAArch64/macOSDebug.tar -C target/aarch64-apple-darwin/debug/bundle/osx/ $(ls target/aarch64-apple-darwin/debug/bundle/osx/)
- run: tar -cvf OutAArch64/macOSRelease.tar -C target/aarch64-apple-darwin/release/bundle/osx/ $(ls target/aarch64-apple-darwin/release/bundle/osx/)
- uses: actions/upload-artifact@v4.1.0
- uses: actions/upload-artifact@v4.2.0
with:
name: macOS x86_64 Debug
path: OutDebug/macOSDebug.tar
- uses: actions/upload-artifact@v4.1.0
- uses: actions/upload-artifact@v4.2.0
with:
name: macOS x86_64 Release
path: Out/macOSRelease.tar
- uses: actions/upload-artifact@v4.1.0
- uses: actions/upload-artifact@v4.2.0
with:
name: macOS AArch64 Debug
path: OutDebugAArch64/macOSDebug.tar
- uses: actions/upload-artifact@v4.1.0
- uses: actions/upload-artifact@v4.2.0
with:
name: macOS AArch64 Release
path: OutAArch64/macOSRelease.tar
Expand All @@ -74,11 +74,11 @@ jobs:
- run: cargo install cargo-bundle
- run: cargo bundle
- run: cargo bundle --release
- uses: actions/upload-artifact@v4.1.0
- uses: actions/upload-artifact@v4.2.0
with:
name: Linux Debug
path: target/debug/bundle/deb/*.deb
- uses: actions/upload-artifact@v4.1.0
- uses: actions/upload-artifact@v4.2.0
with:
name: Linux Release
path: target/release/bundle/deb/*.deb
Expand All @@ -91,11 +91,11 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
- run: cargo build -Zunstable-options --out-dir=out-debug
- run: cargo build --release -Zunstable-options --out-dir=out
- uses: actions/upload-artifact@v4.1.0
- uses: actions/upload-artifact@v4.2.0
with:
name: Windows Debug
path: out-debug/*.exe
- uses: actions/upload-artifact@v4.1.0
- uses: actions/upload-artifact@v4.2.0
with:
name: Windows Release
path: out/*.exe