Skip to content

Commit

Permalink
build/release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jpprins1 committed Jan 2, 2024
1 parent fbd7c31 commit 3124c9d
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
54 changes: 54 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Build and publish

# Run on PR requests. And on master itself.
on:
push:
branches:
- master # just build the sdist skip release
tags:
- "*"

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- name: Checkout source
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Build a source tarball
run: |
python -m pip install build
python -m build
- uses: actions/upload-artifact@v3
with:
path: ./dist/*
retention-days: 5

publish:
name: Publish on GitHub and PyPI
needs: [build]
runs-on: ubuntu-latest
# release on every tag
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist

- name: Upload Github release
id: upload-release-asset
uses: softprops/action-gh-release@v1

- name: Upload Release Assets to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ History
2.2.3 (unreleased)
------------------

- Nothing changed yet.
- Added build/release Github action.


2.2.2 (2023-12-21)
Expand Down

0 comments on commit 3124c9d

Please sign in to comment.