From 4bc02c938de4a72fce81f8cdc652e64e0c50ce4a Mon Sep 17 00:00:00 2001 From: Emil Jonathan Eriksson <8700261+ginger51011@users.noreply.github.com> Date: Mon, 7 Oct 2024 19:37:35 +0200 Subject: [PATCH] Nvm tee --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a2759ee..fc03c7b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v4 - name: Get the release version from the tag shell: bash - run: echo "VERSION=${GITHUB_REF#refs/tags/}" | tee --append $GITHUB_ENV + run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV - name: Install Rust uses: dtolnay/rust-toolchain@stable with: @@ -49,7 +49,7 @@ jobs: result="$dirname.tar.gz" tar -czf "$result" "$dirname" sha256sum "$result" > "$result.sha256" - echo "RESULT=$result" | tee --append $GITHUB_ENV + echo "RESULT=$result" >> $GITHUB_ENV # - name: Release # uses: softprops/action-gh-release@v1 # with: