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 f697f0c commit 2234fd0Copy full SHA for 2234fd0
.github/workflows/nightly.yml
@@ -33,11 +33,13 @@ jobs:
33
# if not, we'll create a new nightly tag
34
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
+ exit 1
37
else
38
# v0.0.0-nightly-<short sha>-<date>
39
NEXT_VERSION=nightly-${SHORT_SHA}
40
# set output so it can be used in other jobs
41
echo "NEXT_VERSION=${NEXT_VERSION}" >> $GITHUB_OUTPUT
42
+ exit 0
43
fi
44
45
- uses: actions/setup-node@v3
0 commit comments