Skip to content

Commit

Permalink
Does this trigger a deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
OkkeVanEck committed Aug 12, 2023
1 parent c1a5225 commit 3f136b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
allowDeploy:
description: "Whether to deploy."
required: true
default: false
default: true
type: boolean
workflow_dispatch:
inputs:
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
path: dist/*.tar.gz

deploy:
if: github.ref == 'refs/heads/master' && inputs.allowDeploy == 'true'
if: github.ref == 'refs/heads/master' && inputs.allowDeploy == true
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 3f136b7

Please sign in to comment.