chore: fix simple error in workflow (#27)

cargo exits with a 1 code which makes github actions bork out
This commit is contained in:
Hikari (ひかり) 2024-01-28 07:33:07 -06:00 committed by GitHub
parent 7006cd3e2b
commit 6e0d1ac5b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View file

@ -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

View file

@ -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: |