From 33370944bf790ce24ca4a7ec815e6068ba0c4a05 Mon Sep 17 00:00:00 2001 From: RoccoDev Date: Thu, 21 Apr 2022 23:43:14 +0200 Subject: [PATCH] Add clippy to build artifacts --- .github/workflows/skyline_release.yml | 4 ++++ 1 file changed, 4 insertions(+) mode change 100644 => 100755 .github/workflows/skyline_release.yml diff --git a/.github/workflows/skyline_release.yml b/.github/workflows/skyline_release.yml old mode 100644 new mode 100755 index afb355d9d38..5b43a37857c --- a/.github/workflows/skyline_release.yml +++ b/.github/workflows/skyline_release.yml @@ -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: