Skip to content

Commit

Permalink
fix test_run
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt committed Feb 19, 2024
1 parent e5d8b74 commit d996904
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.ref || github.sha }}-${{ inputs.package }}-${{ inputs.deploy-to }}
cancel-in-progress: true

env:
TEST_RUN : ${{ inputs.deploy-to == 'test' && 'true' || 'false' }}

jobs:
bump-version-generate-changelog:
name: Bump package version, Generate changelog
Expand All @@ -72,7 +75,7 @@ jobs:

with:
version_number: ${{ inputs.version_number }}
test_run: ${{ inputs.test_run }}
test_run: ${{ env.TEST_RUN }}
nightly_release: ${{ inputs.nightly_release }}

secrets: inherit
Expand Down Expand Up @@ -140,7 +143,7 @@ jobs:
with:
version_number: ${{ inputs.version_number }}
changelog_path: ${{ needs.bump-version-generate-changelog.outputs.changelog_path }}
test_run: ${{ inputs.test_run }}
test_run: ${{ env.TEST_RUN }}

pypi-release:
name: Publish to PyPI
Expand Down

0 comments on commit d996904

Please sign in to comment.