chore: fix simple error in workflow (#27)
cargo exits with a 1 code which makes github actions bork out
This commit is contained in:
parent
7006cd3e2b
commit
6e0d1ac5b8
2 changed files with 8 additions and 2 deletions
5
.github/workflows/post-release.yml
vendored
5
.github/workflows/post-release.yml
vendored
|
|
@ -28,8 +28,11 @@ jobs:
|
|||
|
||||
- name: Install just
|
||||
run: sudo snap install --edge --classic just
|
||||
|
||||
# Cargo returns an exit code of 1 if already installed
|
||||
- name: Install cargo-release
|
||||
run: cargo install cargo-release
|
||||
continue-on-error: true
|
||||
run: cargo install cargo-release --force
|
||||
|
||||
- name: Git setup
|
||||
run: just cargo-post-release --execute
|
||||
|
|
|
|||
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
|
|
@ -32,8 +32,11 @@ jobs:
|
|||
|
||||
- name: Install just
|
||||
run: sudo snap install --edge --classic just
|
||||
|
||||
# Cargo returns an exit code of 1 if already installed
|
||||
- name: Install cargo-release
|
||||
run: cargo install cargo-release
|
||||
continue-on-error: true
|
||||
run: cargo install cargo-release --force
|
||||
|
||||
- name: Git setup
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue