Skip to content
This repository was archived by the owner on May 24, 2022. It is now read-only.
Open
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
4 changes: 4 additions & 0 deletions .github/workflows/skyline_release.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ jobs:
echo "target_triple=x86_64-apple-darwin" >> $GITHUB_ENV
- name: Package Release
run: |
# Include tools (clippy, rustdoc, etc.) in build artifact
rm -rf build/${{ env.target_triple }}/stage2-tools/${{ env.target_triple }}/release/*/ # We only want executables
cp -r build/${{ env.target_triple }}/stage2-tools/${{ env.target_triple }}/release/* build/${{ env.target_triple }}/stage2
# Build the archive
rust-zip build/${{ env.target_triple }}/stage2 build-${{ env.target_triple }}.zip
- uses: actions/upload-artifact@v2
with:
Expand Down