Skip to content

Commit

Permalink
Don't skip binary uploads for manually built projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Markkus Millend committed Jul 16, 2024
1 parent b0b837a commit 31e56a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
name: "Upload"
needs: "build"
runs-on: "ubuntu-latest"
if: ${{ needs.build.outputs.depot_automatic_builds == 'true' }}
if: ${{ needs.build.outputs.depot_automatic_builds == 'true' || github.event_name == 'workflow_dispatch' }}
steps:
- id: "checkout"
name: "Checkout code"
Expand Down

0 comments on commit 31e56a0

Please sign in to comment.