mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-14 06:36:17 +01:00
fix: Cancel condition for platform upload
This commit is contained in:
parent
f67d8efb44
commit
d5d1c94566
4
.github/workflows/call.platform_uploads.yml
vendored
4
.github/workflows/call.platform_uploads.yml
vendored
@ -53,7 +53,7 @@ jobs:
|
||||
fi
|
||||
|
||||
- name: Upload to Modrinth
|
||||
if: ${{ !cancelled() || inputs.upload_modrinth == 'true' }}
|
||||
if: ${{ !cancelled() && inputs.upload_modrinth == 'true' }}
|
||||
uses: benwoo1110/modrinth-upload-action@v1
|
||||
with:
|
||||
api_token: ${{ secrets.MODRINTH_TOKEN }}
|
||||
@ -67,7 +67,7 @@ jobs:
|
||||
loaders: bukkit, spigot, paper
|
||||
|
||||
- name: Upload to DBO
|
||||
if: ${{ !cancelled() || inputs.upload_dbo == 'true' }}
|
||||
if: ${{ !cancelled() && inputs.upload_dbo == 'true' }}
|
||||
uses: benwoo1110/dbo-upload-action@v1
|
||||
with:
|
||||
api_token: ${{ secrets.DBO_UPLOAD_API_TOKEN }}
|
||||
|
Loading…
Reference in New Issue
Block a user