Skip to content

Commit

Permalink
move from env to step output
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt committed Feb 20, 2024
1 parent 20c0790 commit ddcc196
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ jobs:
bump-version-generate-changelog:
name: Bump package version, Generate changelog

needs: [ setup-job-vars ]
uses: dbt-labs/dbt-adapters/.github/workflows/release_prep_hatch.yml@bumpVersion

with:
version_number: ${{ inputs.version_number }}
test_run: ${{ steps.setup-job-vars.outputs.TEST_RUN }}
test_run: ${{ needs.setup-job-vars.outputs.TEST_RUN }}
nightly_release: ${{ inputs.nightly_release }}

secrets: inherit
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
with:
version_number: ${{ inputs.version_number }}
changelog_path: ${{ needs.bump-version-generate-changelog.outputs.changelog_path }}
test_run: ${{ steps.setup-job-vars.outputs.TEST_RUN }}
test_run: ${{ needs.setup-job-vars.outputs.TEST_RUN }}

pypi-release:
name: Publish to PyPI
Expand Down

0 comments on commit ddcc196

Please sign in to comment.