diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-12-20 21:53:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 21:53:30 +0800 |
commit | 99d1e7da28061c2559c523f76b58b8bb113475ff (patch) | |
tree | c709117a16b7815cabd5f03606e8f5491f79cc82 | |
parent | 2498747addaf96dacba2000e6fbdf05572d129a3 (diff) | |
download | rneovim-99d1e7da28061c2559c523f76b58b8bb113475ff.tar.gz rneovim-99d1e7da28061c2559c523f76b58b8bb113475ff.tar.bz2 rneovim-99d1e7da28061c2559c523f76b58b8bb113475ff.zip |
ci(release): create version tag after "stable" tag (#26671)
-rw-r--r-- | .github/workflows/release.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da6bd66198..ae3f10d74e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -178,10 +178,10 @@ jobs: DEBUG: api run: | envsubst < "$GITHUB_WORKSPACE/.github/workflows/notes.md" > "$RUNNER_TEMP/notes.md" - gh release create $TAG_NAME $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win64/* if [ "$TAG_NAME" != "nightly" ]; then gh release create stable $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win64/* fi + gh release create $TAG_NAME $PRERELEASE --notes-file "$RUNNER_TEMP/notes.md" --title "$SUBJECT" --target $GITHUB_SHA nvim-macos/* nvim-linux64/* appimage/* nvim-win64/* publish-winget: needs: publish |