Skip to content

Commit

Permalink
Bump actions/upload-artifact from 4.3.3 to 4.3.4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.3 to 4.3.4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.3.3...v4.3.4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jul 8, 2024
1 parent d75edde commit 9140a34
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ jobs:
- run: tar -cvf Out/macOSRelease.tar -C target/x86_64-apple-darwin/release/bundle/osx/ $(ls target/x86_64-apple-darwin/release/bundle/osx/)
- run: tar -cvf OutDebug/macOSDebugAppleSilicon.tar -C target/aarch64-apple-darwin/debug/bundle/osx/ $(ls target/aarch64-apple-darwin/debug/bundle/osx/)
- run: tar -cvf Out/macOSReleaseAppleSilicon.tar -C target/aarch64-apple-darwin/release/bundle/osx/ $(ls target/aarch64-apple-darwin/release/bundle/osx/)
- uses: actions/[email protected].3
- uses: actions/[email protected].4
with:
name: macOS Debug
path: OutDebug/macOSDebug.tar
- uses: actions/[email protected].3
- uses: actions/[email protected].4
with:
name: macOS Release
path: Out/macOSRelease.tar
- uses: actions/[email protected].3
- uses: actions/[email protected].4
with:
name: macOS Apple Silicon Debug
path: OutDebug/macOSDebugAppleSilicon.tar
- uses: actions/[email protected].3
- uses: actions/[email protected].4
with:
name: macOS Apple Silicon Release
path: Out/macOSReleaseAppleSilicon.tar
Expand All @@ -72,11 +72,11 @@ jobs:
- run: cargo install cargo-bundle
- run: cargo bundle
- run: cargo bundle --release
- uses: actions/[email protected].3
- uses: actions/[email protected].4
with:
name: Linux Debug
path: target/debug/bundle/deb/*.deb
- uses: actions/[email protected].3
- uses: actions/[email protected].4
with:
name: Linux Release
path: target/release/bundle/deb/*.deb
Expand All @@ -89,11 +89,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/[email protected].3
- uses: actions/[email protected].4
with:
name: Windows Debug
path: out-debug/*.exe
- uses: actions/[email protected].3
- uses: actions/[email protected].4
with:
name: Windows Release
path: out/*.exe

0 comments on commit 9140a34

Please sign in to comment.