diff options
author | James McCoy <jamessan@jamessan.com> | 2021-10-18 00:04:58 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-10-30 14:02:04 -0400 |
commit | c819ce1fd495b375ceaa85421f838b30f8b80017 (patch) | |
tree | 4fde0d8d84147e45dcd5d824f89838a8e42b91c2 | |
parent | eede587b06ee286582445886c13c3bdc68cfa40d (diff) | |
download | rneovim-c819ce1fd495b375ceaa85421f838b30f8b80017.tar.gz rneovim-c819ce1fd495b375ceaa85421f838b30f8b80017.tar.bz2 rneovim-c819ce1fd495b375ceaa85421f838b30f8b80017.zip |
ci(release): do not fail if stable/nightly release doesn't exist
[skip ci]
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7eca098d01..3c2291cc0c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -175,14 +175,14 @@ jobs: run: | (echo 'SUBJECT=Nvim development (prerelease) build'; echo 'PRERELEASE=--prerelease') >> $GITHUB_ENV - gh release delete nightly --yes + gh release delete nightly --yes || true - if: env.TAG_NAME != 'nightly' env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | (echo 'SUBJECT=Nvim release build'; echo 'PRERELEASE=') >> $GITHUB_ENV - gh release delete stable --yes + gh release delete stable --yes || true # `sha256sum` outputs <sha> <path>, so we cd into each dir to drop the # containing folder from the output. - name: Generate Linux64 SHA256 checksums |