Skip to content

Commit

Permalink
cicd: update release.yml to use trusted publisher (#279)
Browse files Browse the repository at this point in the history
* Followed https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
  * Did not include [Signing the distribution packages](https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/#signing-the-distribution-packages)
  * In `publish-to-pypi`, removed `if: startsWith(github.ref, 'refs/tags/')  # only publish to PyPI on tag pushes` since we only make a release when a tag is created.
  • Loading branch information
korikuzma committed Nov 9, 2023
1 parent 152d243 commit 72bb7af
Showing 1 changed file with 52 additions and 38 deletions.
90 changes: 52 additions & 38 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,64 @@ name: Upload tagged commit to PyPI
on:
push:
tags:
- '*.*.**'
- "*.*.**"
jobs:
get_branch:
runs-on: ubuntu-latest
outputs:
branch_name: ${{ steps.get_branch_name.outputs.name }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get branch name
id: get_branch_name
run: |
raw=$(git branch -r --contains ${{ github.ref }})
branch=${raw##*/}
echo "::set-output name=name::$branch"
release:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get branch name
id: get_branch_name
run: |
raw=$(git branch -r --contains ${{ github.ref }})
branch=${raw##*/}
echo "::set-output name=name::$branch"
build:
name: Build distribution
runs-on: ubuntu-latest
needs: get_branch
if: needs.get_branch.outputs.branch_name == '0.8'
if: needs.get_branch.outputs.branch_name == "0.8"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Update submodules
run: git submodule update --init --recursive
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build
run: python3 setup.py sdist bdist_wheel
- name: PyPI test
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: PyPI publish
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Update submodules
run: git submodule update --init --recursive
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/
publish-to-pypi:
name: >-
Publish Python distribution to PyPI
needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/ga4gh-vrs
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 72bb7af

Please sign in to comment.