Skip to content

Commit

Permalink
Clean up artefact names
Browse files Browse the repository at this point in the history
  • Loading branch information
VisualEhrmanntraut committed May 22, 2024
1 parent 60968e2 commit 10899ed
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 @@ -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
Expand Down

0 comments on commit 10899ed

Please sign in to comment.