-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (61 loc) · 1.53 KB
/
release.yml
File metadata and controls
70 lines (61 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Release Events
on:
release:
types: [published]
env:
GH_TOKEN: ${{ github.token }}
jobs:
build:
# disabled for this project since we don't want to publish it
if: false
name: Build
runs-on: ubuntu-latest
steps:
- name: ⬇️ Set up code
uses: actions/checkout@v6
with:
show-progress: false
- name: 🐍 Set up Python
uses: actions/setup-python@v6
with:
python-version-file: .python-version
cache: pip
cache-dependency-path: setup.py
- name: 📦 Build package
run: pipx run build
- name: ⬆️ Upload artifacts
uses: actions/upload-artifact@v6
with:
name: build-artifacts
path: dist
retention-days: 1
publish:
name: Publish
runs-on: ubuntu-latest
needs: build
environment:
name: prod
url: https://pypi.org/project/<project-name>
permissions:
id-token: write
steps:
- name: ⬇️ Download artifacts
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: dist
- name: 🚀 Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
notify:
name: Notifications
runs-on: ubuntu-latest
needs: publish
permissions:
contents: read
pull-requests: write
issues: write
steps:
- name: Release Notifier
uses: agrc/release-issue-notifications-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}