Skip to content

Commit

Permalink
Improve CI/CD workflows (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
lysnikolaou committed Nov 14, 2023
1 parent b11e9f2 commit 1893dac
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 25 deletions.
103 changes: 81 additions & 22 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,92 @@
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
name: Build and publish Python 🐍 distribution 📦 to PyPI and GH

on: push
on:
push:
branches:
- main
tags:
- v[0-9].[0-9]+.[0.9]+

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-18.04

build:
name: Build Python 🐍 distribution 📦
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.12
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
run: python -m pip install --user build
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
run: python -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

publish:
name: Publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
needs:
- build
if: startsWith(github.ref, 'refs/tags')

environment:
name: pypi
url: https://pypi.org/p/pegen
permissions:
id-token: write

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1

github-release:
name: >-
Sign the Python 🐍 distribution 📦 with Sigstore
and create a GitHub Release
runs-on: ubuntu-latest
needs:
- publish

permissions:
contents: write
id-token: write

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@v1.2.3
with:
password: ${{ secrets.PYPI_API_TOKEN }}
inputs: >-
./dist/*.tar.gz
./dist/*.whl
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release create
'${{ github.ref_name }}'
--repo '${{ github.repository }}'
--generate-notes
- name: Upload artifact signatures to GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release upload
'${{ github.ref_name }}' dist/**
--repo '${{ github.repository }}'
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Run test suite
on:
push:
branches:
-main
- main
pull_request:
branches:
- main
Expand All @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8','3.9','3.10', '3.11', '3.12-dev']
python-version: ['3.8','3.9','3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Get history and tags for SCM versioning to work
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = {file = "LICENSE"}
authors = [
{name = "Guido van Rossum"},
{name = "Pablo Galindo", email = "pablogsal@gmail.com"},
{name = "Lysandros Nikolaou"}
{name = "Lysandros Nikolaou", email = "lisandrosnik@gmail.com"}
]
maintainers = [
{name = "Matthieu C. Dartiailh", email = "m.dartiailh@gmail.com"}
Expand Down

0 comments on commit 1893dac

Please sign in to comment.