mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 15:53:30 -07:00
Allow pack job to run in parallel to test
This commit is contained in:
parent
850414b017
commit
99b49f0b8f
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
|
|
@ -42,7 +42,6 @@ jobs:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
|
||||||
pack:
|
pack:
|
||||||
needs: test
|
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
permissions:
|
permissions:
|
||||||
actions: write
|
actions: write
|
||||||
|
|
@ -83,7 +82,9 @@ jobs:
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
|
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
|
||||||
needs: pack
|
needs:
|
||||||
|
- test
|
||||||
|
- pack
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
actions: read
|
actions: read
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue