Skip to content

Commit

Permalink
CI fix attempt obi1kenobi#3
Browse files Browse the repository at this point in the history
  • Loading branch information
tonowak committed Jan 22, 2023
1 parent 4107c67 commit 1e91d52
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,14 @@ jobs:
key: clap

- name: Run semver-checks
continue-on-error: true
run: |
cargo run semver-checks check-release --manifest-path="subject-current/Cargo.toml" --baseline-root="subject-baseline/Cargo.toml" > output
if [[ $? == 0 ]]; then exit 1; else exit 0; fi
echo "$?" > return_code
- name: Check return code
run: |
if [[ $(cat return_code) == 0 ]]; then exit 1; else exit 0; fi
- name: Check output
run: |
Expand Down

0 comments on commit 1e91d52

Please sign in to comment.