We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3025cd commit be8feedCopy full SHA for be8feed
.github/workflows/build_and_release.yml
@@ -77,6 +77,5 @@ jobs:
77
with:
78
draft: true
79
tag: "v${{ steps.version.outputs.VERSION }}"
80
- artifacts: "${{ env.ARTIFACT_NAME }}.tar.zst"
+ artifacts: "${{ env.ARTIFACT_NAME }}.tar.gz"
81
allowUpdates: true
82
- updateOnlyUnreleased: true
package.sh
@@ -6,4 +6,4 @@ source config.sh
6
7
TOOLCHAIN_DIR=rust/build/$TOOLCHAIN_HOST_TRIPLET/stage2
8
cp -n rust/build/$TOOLCHAIN_HOST_TRIPLET/stage2-tools-bin/* $TOOLCHAIN_DIR/bin
9
-tar --exclude lib/rustlib/src --exclude lib/rustlib/rustc-src -hczvf rust-toolchain-$TOOLCHAIN_NAME.tar.gz -C $TOOLCHAIN_DIR .
+tar --exclude lib/rustlib/src --exclude lib/rustlib/rustc-src -hczvf $ARTIFACT_NAME.tar.gz -C $TOOLCHAIN_DIR .
0 commit comments