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: