diff --git a/.github/workflows/call.platform_uploads.yml b/.github/workflows/call.platform_uploads.yml index 27f2463a..7ecbfabf 100644 --- a/.github/workflows/call.platform_uploads.yml +++ b/.github/workflows/call.platform_uploads.yml @@ -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 }}