summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-11-02 07:37:44 -0400
committerGitHub <noreply@github.com>2021-11-02 07:37:44 -0400
commit1e1fd71fea739f6a39581e46679f8439ef98430f (patch)
tree5749e807279b2e259375a323d713bd478a0ccd82 /.github/workflows/release.yml
parentb69ceaa2e8fd35ce3efc21784f033e0f62d0054d (diff)
parent606ace0fbeebcd0c16f636c0f782ba916f2c73ae (diff)
Merge pull request #16208 from neovim/backport-16207-to-release-0.5release-0.5
[Backport release-0.5] ci(release): delete nightly/stable tag so release recreates it
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3c2291cc0c..9333449a6c 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -176,6 +176,7 @@ jobs:
(echo 'SUBJECT=Nvim development (prerelease) build';
echo 'PRERELEASE=--prerelease') >> $GITHUB_ENV
gh release delete nightly --yes || true
+ git push origin :nightly || true
- if: env.TAG_NAME != 'nightly'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -183,6 +184,7 @@ jobs:
(echo 'SUBJECT=Nvim release build';
echo 'PRERELEASE=') >> $GITHUB_ENV
gh release delete stable --yes || true
+ git push origin :stable || true
# `sha256sum` outputs <sha> <path>, so we cd into each dir to drop the
# containing folder from the output.
- name: Generate Linux64 SHA256 checksums