Skip to content

Commit be8feed

Browse files
committed
Fix release artifact name
1 parent b3025cd commit be8feed

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/build_and_release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,5 @@ jobs:
7777
with:
7878
draft: true
7979
tag: "v${{ steps.version.outputs.VERSION }}"
80-
artifacts: "${{ env.ARTIFACT_NAME }}.tar.zst"
80+
artifacts: "${{ env.ARTIFACT_NAME }}.tar.gz"
8181
allowUpdates: true
82-
updateOnlyUnreleased: true

package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ source config.sh
66

77
TOOLCHAIN_DIR=rust/build/$TOOLCHAIN_HOST_TRIPLET/stage2
88
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 .
9+
tar --exclude lib/rustlib/src --exclude lib/rustlib/rustc-src -hczvf $ARTIFACT_NAME.tar.gz -C $TOOLCHAIN_DIR .

0 commit comments

Comments
 (0)