Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt authored Jan 22, 2025
1 parent 72e9456 commit 6ccd0c1
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 @@ -62,7 +62,7 @@ jobs:
secrets: inherit

publish-internal:
if: ${{ inputs.pypi-internal == true && inputs.package != 'dbt-athena-community' }}
if: ${{ inputs.pypi-internal == 'true' && inputs.package != 'dbt-athena-community' }}
needs: generate-changelog
uses: ./.github/workflows/_publish-internal.yml
with:
Expand All @@ -72,13 +72,13 @@ jobs:
secrets: inherit

package:
if: ${{ inputs.pypi-public == true }}
if: ${{ inputs.pypi-public == 'true' }}
uses: ./.github/workflows/_package-directory.yml
with:
package: ${{ inputs.package }}

publish-pypi:
if: ${{ inputs.pypi-public == true }}
if: ${{ inputs.pypi-public == 'true' }}
needs: [package, generate-changelog]
runs-on: ${{ vars.DEFAULT_RUNNER }}
environment:
Expand Down

0 comments on commit 6ccd0c1

Please sign in to comment.