Skip to content

Commit

Permalink
ci: append to output file with tee rather than overwrite
Browse files Browse the repository at this point in the history
  • Loading branch information
calumcalder committed Feb 18, 2025
1 parent 1996285 commit 4417b3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
TAG="v${NEW_VERSION}"
git tag "${TAG}" &&
git push origin "${TAG}" --tags &&
echo "version=${NEW_VERSION}" | tee "$GITHUB_OUTPUT"
echo "version=${NEW_VERSION}" | tee -a "$GITHUB_OUTPUT"
release:
needs: bump_version
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4417b3a

Please sign in to comment.