mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-22 02:25:41 +01:00
Run upload to platform even if the other fails
This commit is contained in:
parent
db89482e29
commit
9c3914d409
4
.github/workflows/call.platform_uploads.yml
vendored
4
.github/workflows/call.platform_uploads.yml
vendored
@ -59,7 +59,7 @@ jobs:
|
|||||||
echo "release_type: ${{ steps.parse-release-type.outputs.release_type }}"
|
echo "release_type: ${{ steps.parse-release-type.outputs.release_type }}"
|
||||||
|
|
||||||
- name: Upload to Modrinth
|
- name: Upload to Modrinth
|
||||||
if: inputs.upload_modrinth == 'true'
|
if: ${{ !cancelled() || inputs.upload_modrinth == 'true' }}
|
||||||
uses: benwoo1110/modrinth-upload-action@v1
|
uses: benwoo1110/modrinth-upload-action@v1
|
||||||
with:
|
with:
|
||||||
api_token: ${{ secrets.MODRINTH_TOKEN }}
|
api_token: ${{ secrets.MODRINTH_TOKEN }}
|
||||||
@ -73,7 +73,7 @@ jobs:
|
|||||||
loaders: bukkit, spigot, paper
|
loaders: bukkit, spigot, paper
|
||||||
|
|
||||||
- name: Upload to DBO
|
- name: Upload to DBO
|
||||||
if: inputs.upload_dbo == 'true'
|
if: ${{ !cancelled() || inputs.upload_dbo == 'true' }}
|
||||||
uses: benwoo1110/dbo-upload-action@v1
|
uses: benwoo1110/dbo-upload-action@v1
|
||||||
with:
|
with:
|
||||||
api_token: ${{ secrets.DBO_UPLOAD_API_TOKEN }}
|
api_token: ${{ secrets.DBO_UPLOAD_API_TOKEN }}
|
||||||
|
Loading…
Reference in New Issue
Block a user