Skip to content

Commit

Permalink
Add release.yml for building, uploading and creating release
Browse files Browse the repository at this point in the history
  • Loading branch information
geertjanvdenbosch committed Aug 30, 2024
1 parent f0f5064 commit 4ff7799
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: release.yml
on:
push:
tags:
- '*'

jobs:
tests:
name: tests
uses: ./.github/workflows/tests.yml


build:
name: Build distribution
runs-on: ubuntu-latest
needs: tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: make install-ci
- name: Build package
run: make build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: packages-${{ github.ref_name }}
path: dist/*

release:
name: Release to PyPI
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/${{ github.repository }}
permissions:
id-token: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: packages-${{ github.ref_name }}
path: dist/
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}

github-release:
name: Create release on Github
needs: build
runs-on: ubuntu-latest
steps:
- name: Get packages
uses: actions/download-artifact@v3
with:
name: packages-${{ github.ref_name }}
path: dist/

- name: Create new release
continue-on-error: true
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
body: |
What's changed:
* TODO
Get it [here](https://pypi.org/project/${{ github.repository }}/${{ github.ref_name }})
draft: true
files: dist/*
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ lint:
test: lint
$(BIN)/tox run

install-ci:
$(PYTHON) -m pip install --upgrade pip setuptools wheel twine .

.PHONY: build
build:
$(PYTHON) setup.py sdist bdist_wheel
Expand Down

0 comments on commit 4ff7799

Please sign in to comment.