Skip to content

Merge pull request #118 from dbt-labs/chore-update-release #16

Merge pull request #118 from dbt-labs/chore-update-release

Merge pull request #118 from dbt-labs/chore-update-release #16

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
deploy-to:
type: choice
description: Choose where to publish (test/prod)
options:
- PypiProd
- PypiTest
default: PypiTest
push:
tags:
- 'v*'
permissions: read-all
# will cancel previous workflows triggered by the same event and for the same ref for PRs or same SHA otherwise
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.ref || github.sha }}
cancel-in-progress: true
jobs:
release:
name: PyPI - ${{ inputs.deploy-to || 'PypiProd' }}
runs-on: ubuntu-latest
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Build artifacts
run: uv build
- name: Publish artifacts to PyPI Test
if: inputs.deploy-to == 'PypiTest'
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
- name: Publish artifacts to PyPI Prod
if: inputs.deploy-to == 'PypiProd' || github.event_name == 'push'
uses: pypa/gh-action-pypi-publish@release/v1