From 106385d8f321d681a29153fe13e8c14dbf25f344 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Mon, 11 Dec 2023 15:03:22 +0000 Subject: [PATCH] Fix release pipeline (#232) --- .github/workflows/release.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 252b70b..b37ec6d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,12 +4,15 @@ 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 @@ -17,18 +20,23 @@ jobs: 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'