Skip to content

Commit

Permalink
fix input type on booleans
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Oct 18, 2024
1 parent dee13a7 commit 05bb085
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,23 @@ jobs:
secrets: inherit

publish-internal:
if: ${{ inputs.pypi-internal == 'true' }}
if: ${{ inputs.pypi-internal == true }}
needs: [unit-tests, integration-tests]
uses: ./.github/workflows/publish-internal.yml
with:
deploy-to: ${{ inputs.deploy-to }}
branch: ${{ inputs.branch }}

publish-pypi:
if: ${{ inputs.pypi-public == 'true' }}
if: ${{ inputs.pypi-public == true }}
needs: [unit-tests, integration-tests]
uses: ./.github/workflows/publish-pypi.yml
with:
deploy-to: ${{ inputs.deploy-to }}
branch: ${{ inputs.branch }}

publish-pypi-dbt-athena-community:
if: ${{ inputs.pypi-public == 'true' }}
if: ${{ inputs.pypi-public == true }}
# dbt-athena-community is hard pinned to dbt-athena to ensure they are the same
# this means we need to finish publishing dbt-athena before starting to build dbt-athena-community
needs: publish-pypi
Expand Down

0 comments on commit 05bb085

Please sign in to comment.