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 dd3b226 commit ab5a003Copy full SHA for ab5a003
.github/workflows/nightly.yaml
@@ -38,11 +38,11 @@ jobs:
38
TAG="${MAJOR_VERSION}.${MINOR_VERSION}.0-nightly.$(date +'%Y%m%d')"
39
git tag -a $TAG -m "$TAG: nightly build"
40
git push origin $TAG
41
- git push --delete origin $prev_tag
42
- name: Find previous nightly
43
run: |
44
prev_tag=$(git tag | grep "nightly" | sort -r --version-sort | head -n 2 | tail -n 1)
45
echo "PREVIOUS_NIGHTLY_TAG=$prev_tag" >> $GITHUB_ENV
+ git push --delete origin $prev_tag
46
- name: 'Clean up nightly releases'
47
uses: actions/github-script@v7
48
with:
0 commit comments