-
Notifications
You must be signed in to change notification settings - Fork 63
105 lines (81 loc) · 2.49 KB
/
Copy pathdeploy-package.yml
File metadata and controls
105 lines (81 loc) · 2.49 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
# ref: https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows
name: Deploy PyPI package
on:
push:
branches:
- main
tags:
- '[0-9]+.[0-9]+.[0-9]+'
# Deploy/publish workflow: do not cancel an in-flight release mid-run;
# the group key still coalesces duplicate triggers, but running deploys finish.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: false
jobs:
# production build
build:
name: Create package 📦
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
fetch-tags: true
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: 3.13
- name: Build library
run: |
pip install -U --upgrade-strategy=only-if-needed pip
python3 -m pip install build --user
- name: Build wheel and tarball
run: python3 -m build
- name: Save package
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
include-hidden-files: true
# This will be triggered only when a tag is pushed
publish-to-pypi:
name: Publish to PyPI 🐍 (pypi.org)
if: startsWith(github.ref, 'refs/tags/')
needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/stock-indicators
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download package
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish package 📦 to pypi.org
uses: pypa/gh-action-pypi-publish@release/v1
# This will be triggered everytime when commit is pushed on main branch
publish-to-testpypi:
name: Publish to PyPI 🐍 (test.pypi.org)
needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi-test
url: https://test.pypi.org/p/stock-indicators
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download package
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish package 📦 to test.pypi.org
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/