We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7622ea commit bed1e8aCopy full SHA for bed1e8a
1 file changed
.github/workflows/nightly.yml
@@ -112,6 +112,12 @@ jobs:
112
NIGHTLY_VERSION="${NEXT_PATCH_VERSION}-${COMMIT_COUNT}-${SHORT_SHA}"
113
echo "Setting version to ${NIGHTLY_VERSION}"
114
115
+ # Print badge to GitHub Actions summary
116
+ echo "### Nightly Build Version" >> $GITHUB_STEP_SUMMARY
117
+ # Replace dashes with double dashes for shields.io
118
+ NIGHTLY_VERSION_BADGE=${NIGHTLY_VERSION//-/--}
119
+ echo "" >> $GITHUB_STEP_SUMMARY
120
+
121
# Update package.json
122
npm version "${NIGHTLY_VERSION}" --no-git-tag-version
123
0 commit comments