Skip to content

Commit

Permalink
Merge pull request #2965 from Multiverse/fix-cancel-logic
Browse files Browse the repository at this point in the history
  • Loading branch information
benwoo1110 committed Aug 23, 2023
2 parents f67d8ef + d5d1c94 commit 743feea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/call.platform_uploads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit 743feea

Please sign in to comment.