Skip to content

Commit

Permalink
Allow pack job to run in parallel to test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Sep 22, 2023
1 parent 4f966dd commit 53005b4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

pack:
needs: test
runs-on: windows-latest
permissions:
actions: write
Expand Down Expand Up @@ -80,7 +79,9 @@ jobs:

deploy:
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
needs: pack
needs:
- test
- pack
runs-on: ubuntu-latest
permissions:
actions: read
Expand Down

0 comments on commit 53005b4

Please sign in to comment.