Publish - dbt-adapters - prod - colin-rogers-dbt #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Publish" | |
run-name: "Publish - ${{ inputs.package }} - ${{ inputs.deploy-to }} - ${{ github.actor }}" | |
on: | |
workflow_dispatch: | |
inputs: | |
package: | |
description: "Choose the package to publish" | |
type: choice | |
options: | |
- "dbt-adapters" | |
- "dbt-tests-adapter" | |
deploy-to: | |
description: "Choose whether to publish to test or prod" | |
type: environment | |
default: "prod" | |
branch: | |
description: "Choose the branch to publish from" | |
type: string | |
default: "main" | |
pypi-internal: | |
description: "Publish Internally" | |
type: boolean | |
default: true | |
pypi-public: | |
description: "Publish to PyPI" | |
type: boolean | |
default: false | |
# don't publish to the same target in parallel | |
concurrency: | |
group: ${{ github.workflow }}-${{ inputs.package }}-${{ inputs.deploy-to }} | |
cancel-in-progress: true | |
jobs: | |
unit-tests: | |
uses: ./.github/workflows/_unit-tests.yml | |
with: | |
package: ${{ inputs.package }} | |
branch: ${{ inputs.branch }} | |
generate-changelog: | |
needs: unit-tests | |
uses: ./.github/workflows/_generate-changelog.yml | |
with: | |
package: ${{ inputs.package }} | |
merge: ${{ inputs.deploy-to == 'prod' }} | |
branch: ${{ inputs.branch }} | |
secrets: inherit | |
publish-internal: | |
if: ${{ inputs.pypi-internal == true }} | |
needs: generate-changelog | |
uses: ./.github/workflows/_publish-internal.yml | |
with: | |
package: ${{ inputs.package }} | |
deploy-to: ${{ inputs.deploy-to }} | |
branch: ${{ needs.generate-changelog.outputs.branch-name }} | |
secrets: inherit | |
package: | |
if: ${{ inputs.pypi-public == true }} | |
uses: ./.github/workflows/_package-directory.yml | |
with: | |
package: ${{ inputs.package }} | |
publish-pypi: | |
if: ${{ inputs.pypi-public == true }} | |
needs: [package, generate-changelog] | |
runs-on: ${{ vars.DEFAULT_RUNNER }} | |
environment: | |
name: ${{ inputs.deploy-to }} | |
url: ${{ vars.PYPI_PROJECT_URL }}/${{ inputs.package }} | |
permissions: | |
# this permission is required for trusted publishing | |
# see https://github.com/marketplace/actions/pypi-publish | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ needs.generate-changelog.outputs.branch-name }} | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ vars.DEFAULT_PYTHON_VERSION }} | |
- uses: pypa/hatch@install | |
# hatch will build using test PyPI first and fall back to prod PyPI when deploying to test | |
# this is done via environment variables in the test environment in GitHub | |
- run: hatch build && hatch run build:check-all | |
working-directory: ./${{ needs.package.outputs.directory }} | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository-url: ${{ vars.PYPI_REPOSITORY_URL }} | |
packages-dir: ./${{ needs.package.outputs.directory }}dist/ | |
- id: version | |
run: echo "version=$(hatch version)" >> $GITHUB_OUTPUT | |
working-directory: ./${{ needs.package.outputs.directory }} | |
- uses: nick-fields/retry@v3 | |
with: | |
timeout_seconds: 10 | |
retry_wait_seconds: 10 | |
max_attempts: 15 # 5 minutes: (10s timeout + 10s delay) * 15 attempts | |
command: wget ${{ vars.PYPI_PROJECT_URL }}/${{ steps.version.outputs.version }} |