Skip to content

Commit

Permalink
Merge pull request #62 from dbt-labs/feature/workflow_for_pypi_release
Browse files Browse the repository at this point in the history
add pypi publish workflow
  • Loading branch information
graciegoheen authored Jun 13, 2023
2 parents 75c5db6 + 3268e28 commit 123b4ae
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Publish

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: Install dependencies and build
run: |
python3 -m pip install --upgrade pip
pip install poetry
poetry build
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
path: ./dist

pypi-publish:
needs: ['build']
environment: 'PypiProd'

name: upload release to PyPI
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v3

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages_dir: artifact/

0 comments on commit 123b4ae

Please sign in to comment.