Skip to content

Commit

Permalink
ci: add workflow to release to PyPI (#259)
Browse files Browse the repository at this point in the history
This workflow file is a copy of Starbase's, with the modification to run on
self-hosted runners (and to use Python 3.10 instead of 3.11).

Co-authored-by: Callahan <[email protected]>
  • Loading branch information
tigarmo and mr-cal authored Jul 3, 2024
1 parent 2a79b3f commit 6d95a8d
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/release-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Release
on:
push:
tags:
# These tags should be protected, remember to enable the rule:
# https://github.com/canonical/craft-cli/settings/tag_protection
- "[0-9]+.[0-9]+.[0-9]+"

permissions:
contents: write

jobs:
source-wheel:
runs-on: [self-hosted, jammy]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fetch tag annotations
run: |
git fetch --force --tags --depth 1
git describe --dirty --long --match '[0-9]*.[0-9]*.[0-9]*' --exclude '*[^0-9.]*'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
check-latest: true
- name: Build packages
run: |
pip install build twine
python3 -m build
twine check dist/*
- name: Upload pypi packages artifact
uses: actions/upload-artifact@v4
with:
name: pypi-packages
path: dist/
pypi:
needs: ["source-wheel"]
runs-on: [self-hosted, jammy]
steps:
- name: Get packages
uses: actions/download-artifact@v4
with:
name: pypi-packages
path: dist/
- name: Publish to pypi
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
github-release:
needs: ["source-wheel"]
runs-on: [self-hosted, jammy]
steps:
- name: Get pypi artifacts
uses: actions/download-artifact@v4
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
**

0 comments on commit 6d95a8d

Please sign in to comment.