Skip to content

Commit

Permalink
Rename CI job
Browse files Browse the repository at this point in the history
To reuse this, we rename it to what it actually does: Gathering
all crates that are published to crates.io.
  • Loading branch information
thomaseizinger committed Nov 8, 2022
1 parent 46a1bf5 commit 342b175
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
test "$ALL_FEATURES" = "$FULL_FEATURE"
gather_crates_for_semver_checks:
gather_published_crates:
runs-on: ubuntu-latest
outputs:
members: ${{ steps.cargo-metadata.outputs.members }}
Expand All @@ -188,11 +188,11 @@ jobs:
semver-check:
runs-on: ubuntu-latest
needs: gather_crates_for_semver_checks
needs: gather_published_crates
strategy:
fail-fast: false
matrix:
crate: ${{ fromJSON(needs.gather_crates_for_semver_checks.outputs.members) }}
crate: ${{ fromJSON(needs.gather_published_crates.outputs.members) }}
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@bb6001c4ea612bf59c3abfc4756fbceee4f870c7 # 0.10.0
Expand Down

0 comments on commit 342b175

Please sign in to comment.