Skip to content

Commit

Permalink
Fix release pipeline (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Dec 11, 2023
1 parent 93ce50d commit 106385d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,39 @@ name: release
on:
release:
types: [published]
workflow_dispatch:

jobs:
pypi:
name: Publish to PyPI registry
environment: release
runs-on: ubuntu-22.04
permissions:
id-token: write

env:
FORCE_COLOR: 1
PY_COLORS: 1
TOXENV: pkg

steps:
- name: Switch to using Python 3.9 by default
- name: Switch to using Python 3.10 by default
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: "3.10"

- name: Install tox
run: python3 -m pip install --user "tox>=4.0.0"

- name: Check out src from Git
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
submodules: true

- name: Build dists
run: python -m tox

- name: Publish to pypi.org
if: >- # "create" workflows run separately from "push" & "pull_request"
github.event_name == 'release'
Expand Down

0 comments on commit 106385d

Please sign in to comment.