-
Notifications
You must be signed in to change notification settings - Fork 0
128 lines (106 loc) · 3.62 KB
/
publish.yml
File metadata and controls
128 lines (106 loc) · 3.62 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# =============================================================================
# quickforge - PyPI Publishing Workflow
# =============================================================================
# This workflow automatically publishes to PyPI when a GitHub release is created.
# It uses trusted publishing (OIDC) - no API tokens needed!
#
# Setup required:
# 1. Go to PyPI → Your Projects → quickforge → Settings → Publishing
# 2. Add GitHub as a trusted publisher with:
# - Owner: Technical-1
# - Repository: quickforge
# - Workflow: publish.yml
# =============================================================================
name: Publish to PyPI
on:
release:
types: [published]
# Allow manual triggering for testing
workflow_dispatch:
jobs:
# ===========================================================================
# Build Package
# ===========================================================================
build:
name: Build Distribution
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install build tools
run: pip install build
- name: Build package
run: python -m build
- name: Upload distribution artifacts
uses: actions/upload-artifact@v7
with:
name: python-package-distributions
path: dist/
# ===========================================================================
# Publish to TestPyPI (for testing)
# ===========================================================================
publish-testpypi:
name: Publish to TestPyPI
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch'
environment:
name: testpypi
url: https://test.pypi.org/p/quickforge
permissions:
id-token: write
steps:
- name: Download distribution artifacts
uses: actions/download-artifact@v8
with:
name: python-package-distributions
path: dist/
- name: Publish to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
# ===========================================================================
# Publish to PyPI (production)
# ===========================================================================
publish-pypi:
name: Publish to PyPI
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'release'
environment:
name: pypi
url: https://pypi.org/p/quickforge
permissions:
id-token: write
steps:
- name: Download distribution artifacts
uses: actions/download-artifact@v8
with:
name: python-package-distributions
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
# ===========================================================================
# Create GitHub Release Assets
# ===========================================================================
github-release:
name: Upload Release Assets
needs: [build, publish-pypi]
runs-on: ubuntu-latest
if: github.event_name == 'release'
permissions:
contents: write
steps:
- name: Download distribution artifacts
uses: actions/download-artifact@v8
with:
name: python-package-distributions
path: dist/
- name: Upload to GitHub Release
uses: softprops/action-gh-release@v3
with:
files: dist/*