diff options
author | James McCoy <jamessan@jamessan.com> | 2021-03-14 19:53:45 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-03-14 19:53:45 -0400 |
commit | ba758ac553679b71413dc6d0b1d8e01b83f4a1bd (patch) | |
tree | c6dce9e38b436bf5064cee9abc7f6acc092f484c | |
parent | a8694ff9c1c4d2cd1366321bdfce9078557eff1d (diff) | |
download | rneovim-ba758ac553679b71413dc6d0b1d8e01b83f4a1bd.tar.gz rneovim-ba758ac553679b71413dc6d0b1d8e01b83f4a1bd.tar.bz2 rneovim-ba758ac553679b71413dc6d0b1d8e01b83f4a1bd.zip |
ci(GHA/release): Delete the release when creating a new nightly
This reverts #13733. Disabling delete of the release leaves behind a
draft release associated with the previous nightly tag, which is
annoying to cleanup.
In the rare circumstances that the creation of a new nightly fails after
deleting the previous nightly, the job can be re-run or a nightly can be
missing for a day.
-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 2d0d21a585..43fe1d5101 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -156,7 +156,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - delete_release: '' + delete_release: true tag_name: nightly - uses: meeDamian/github-release@2.0 with: |