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 789adf2 commit 8d1f2d4Copy full SHA for 8d1f2d4
.github/workflows/nightly.yml
@@ -31,7 +31,7 @@ jobs:
31
# check if last commit to main would be the nightly tag we're about to create (minus the date)
32
# if it is, we'll skip the nightly creation
33
# if not, we'll create a new nightly tag
34
- if [[ ${LATEST_NIGHTLY_TAG} == v0.0.0-nightly-${SHORT_SHA}-* ]]; then
+ if [[ ${LATEST_NIGHTLY_TAG} == v0.0.0-nightly-${SHORT_SHA} ]]; then
35
echo "🛑 Latest nightly tag is the same as the latest commit sha, skipping nightly release"
36
else
37
# v0.0.0-nightly-<short sha>-<date>
@@ -82,4 +82,4 @@ jobs:
82
uses: mathieudutour/[email protected]
83
with:
84
github_token: ${{ secrets.GITHUB_TOKEN }}
85
- custom_tag: ${{ steps.version.outputs.NEXT_VERSION }}
+ custom_tag: '0.0.0-${{ steps.version.outputs.NEXT_VERSION }}'
0 commit comments