mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
ci(release): do not fail if stable/nightly release doesn't exist
[skip ci]
This commit is contained in:
parent
eede587b06
commit
c819ce1fd4
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user