-
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.
- Loading branch information
1 parent
60968e2
commit 10899ed
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 |
---|---|---|
|
@@ -42,24 +42,24 @@ jobs: | |
- run: cargo bundle --release --target aarch64-apple-darwin | ||
- run: tar -cvf OutDebug/macOSDebug.tar -C target/x86_64-apple-darwin/debug/bundle/osx/ $(ls target/x86_64-apple-darwin/debug/bundle/osx/) | ||
- 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/macOSDebugAArch64.tar -C target/aarch64-apple-darwin/debug/bundle/osx/ $(ls target/aarch64-apple-darwin/debug/bundle/osx/) | ||
- run: tar -cvf Out/macOSReleaseAArch64.tar -C target/aarch64-apple-darwin/release/bundle/osx/ $(ls target/aarch64-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] | ||
with: | ||
name: macOS x86_64 Debug | ||
name: macOS Debug | ||
path: OutDebug/macOSDebug.tar | ||
- uses: actions/[email protected] | ||
with: | ||
name: macOS x86_64 Release | ||
name: macOS Release | ||
path: Out/macOSRelease.tar | ||
- uses: actions/[email protected] | ||
with: | ||
name: macOS AArch64 Debug | ||
path: OutDebug/macOSDebugAArch64.tar | ||
name: macOS Apple Silicon Debug | ||
path: OutDebug/macOSDebugAppleSilicon.tar | ||
- uses: actions/[email protected] | ||
with: | ||
name: macOS AArch64 Release | ||
path: Out/macOSReleaseAArch64.tar | ||
name: macOS Apple Silicon Release | ||
path: Out/macOSReleaseAppleSilicon.tar | ||
|
||
build-linux: | ||
name: Build Linux | ||
|