We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c5362 commit 34ee294Copy full SHA for 34ee294
1 file changed
.github/workflows/release.yml
@@ -158,10 +158,12 @@ jobs:
158
DIST_TAG="release-$(echo "$NEW" | cut -d. -f1,2)"
159
fi
160
161
- echo "new=${NEW}" >> "$GITHUB_OUTPUT"
162
- echo "current=${CURRENT}" >> "$GITHUB_OUTPUT"
163
- echo "is_latest=${IS_LATEST}" >> "$GITHUB_OUTPUT"
164
- echo "dist_tag=${DIST_TAG}" >> "$GITHUB_OUTPUT"
+ {
+ echo "new=${NEW}"
+ echo "current=${CURRENT}"
+ echo "is_latest=${IS_LATEST}"
165
+ echo "dist_tag=${DIST_TAG}"
166
+ } >> "$GITHUB_OUTPUT"
167
168
echo "::notice::Publishing ${NEW}; current latest=${CURRENT}; is_latest=${IS_LATEST}; dist_tag=${DIST_TAG:-latest}"
169
0 commit comments