Skip to content

Commit

Permalink
chore: add pypi release action
Browse files Browse the repository at this point in the history
  • Loading branch information
lepture committed Dec 18, 2024
1 parent 7703672 commit cb9ed5c
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Release theme to PyPI

permissions:
contents: write
id-token: write

on:
push:
tags:
- v2.*

jobs:
build:
name: build dist files
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: 3.11

- name: install build
run: python -m pip install --upgrade build

- name: build dist
run: python -m build

- uses: actions/upload-artifact@v4
with:
name: artifacts
path: dist/*
if-no-files-found: error

publish:
environment:
name: pypi-release
url: https://pypi.org/p/livereload

name: release to pypi
needs: build
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v4
with:
name: artifacts
path: dist

- name: Push build artifacts to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

release:
name: write release note
runs-on: ubuntu-latest
needs: publish

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npx changelogithub --no-group
continue-on-error: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit cb9ed5c

Please sign in to comment.