-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (52 loc) · 1.52 KB
/
Copy pathpublish.yml
File metadata and controls
68 lines (52 loc) · 1.52 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
name: Publish Python Package
on:
push:
branches:
- main
- 'release/*'
permissions:
contents: write
id-token: write # ← CRÍTICO para Trusted Publishers
jobs:
release-test:
if: startsWith(github.ref_name, 'release/')
runs-on: ubuntu-latest
environment: test-release
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install poetry python-semantic-release
- name: Create version with semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: semantic-release version
- name: Build package
run: poetry build
- name: Publish to TestPyPI (Trusted Publisher)
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
release-prod:
if: github.ref_name == 'main'
runs-on: ubuntu-latest
environment: release
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install poetry python-semantic-release
- name: Create version with semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: semantic-release version
- name: Build package
run: poetry build
- name: Publish to PyPI (Trusted Publisher)
uses: pypa/gh-action-pypi-publish@release/v1