Skip to content

Commit 76d33d8

Browse files
committed
rm fake info
1 parent 081f82d commit 76d33d8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ concurrency:
1818
env:
1919
# When getting Rust dependencies, retry on network error:
2020
CARGO_NET_RETRY: 10
21-
PRETEND_TAG: release-0.0.0
2221

2322
jobs:
2423
build_icp:
@@ -57,7 +56,7 @@ jobs:
5756
echo "RUSTFLAGS=--remap-path-prefix=${GITHUB_WORKSPACE}=/builds/dfinity" >> $GITHUB_ENV
5857
5958
- name: Set names (tag only)
60-
# if: github.ref_type == 'tag'
59+
if: github.ref_type == 'tag'
6160
run: |
6261
REF_NAME_SANITIZED=$(echo "$GITHUB_REF_NAME" | tr '/' '-')
6362
echo "TARBALL_FILENAME=icp-cli-$REF_NAME_SANITIZED-${{ matrix.name }}.tar.gz" >> $GITHUB_ENV
@@ -88,14 +87,14 @@ jobs:
8887
if: contains(matrix.os, 'ubuntu')
8988

9089
- name: Create tarball of binaries and sha256 of tarball
91-
# if: github.ref_type == 'tag'
90+
if: github.ref_type == 'tag'
9291
run: |
9392
${{ matrix.tar }} -zcC ${{ matrix.binary_path }} -f ${{ env.TARBALL_FILENAME }} icp
9493
shasum -a 256 ${{ env.TARBALL_FILENAME }} > ${{ env.SHA256_FILENAME }}
9594
shasum -c ${{ env.SHA256_FILENAME }}
9695
9796
- name: Upload Artifacts
98-
# if: github.ref_type == 'tag'
97+
if: github.ref_type == 'tag'
9998
uses: actions/upload-artifact@v4
10099
with:
101100
name: icp-artifacts-${{ hashFiles('rust-toolchain.toml') }}-${{ matrix.name }}
@@ -115,7 +114,7 @@ jobs:
115114

116115
publish:
117116
runs-on: ubuntu-latest
118-
# if: github.ref_type == 'tag'
117+
if: github.ref_type == 'tag'
119118
needs: build_icp
120119
permissions:
121120
contents: write

0 commit comments

Comments
 (0)