Skip to content

Commit

Permalink
Add missing steps dependencies in publish-to-maven-central workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisCAD committed Jul 7, 2021
1 parent c27e29e commit 472c748
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-maven-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
sonatype_staging_repo_id: ${{ needs.create-staging-repository.outputs.repository_id }}
linux-checking:
runs-on: ubuntu-latest
needs: [linux-upload]
needs: [create-staging-repository, linux-upload]
steps:
- name: Checkout the repo
uses: actions/checkout@v2
Expand All @@ -97,7 +97,7 @@ jobs:
sonatype_staging_repo_id: ${{ needs.create-staging-repository.outputs.repository_id }}
windows-checking:
runs-on: windows-latest
needs: [linux-upload, windows-upload]
needs: [create-staging-repository, linux-upload, windows-upload]
steps:
- name: Checkout the repo
uses: actions/checkout@v2
Expand All @@ -113,7 +113,7 @@ jobs:
sonatype_staging_repo_id: ${{ needs.create-staging-repository.outputs.repository_id }}
macos-checking:
runs-on: macos-latest
needs: [linux-upload, macos-upload]
needs: [create-staging-repository, linux-upload, macos-upload]
steps:
- name: Checkout the repo
uses: actions/checkout@v2
Expand Down

0 comments on commit 472c748

Please sign in to comment.