-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump actions/upload-artifact from 4.3.3 to 4.3.4
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
1 parent
d75edde
commit 9140a34
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 |