Skip to content

Commit

Permalink
Make publish and conclusion dependent on build-base.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Oct 2, 2022
1 parent e110972 commit fa787bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ jobs:
shell: bash

publish:
needs: [build, check, fmt, clippy, cargo-deny]
needs: [build-base, build, check, fmt, clippy, cargo-deny]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -429,7 +429,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}

conclusion:
needs: [shellcheck, fmt, clippy, test, generate-matrix, build, publish, check, remote, bisect, docker-in-docker, foreign]
needs: [shellcheck, fmt, clippy, test, generate-matrix, build-base, build, publish, check, remote, bisect, docker-in-docker, foreign]
if: always()
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit fa787bc

Please sign in to comment.