-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (55 loc) · 1.71 KB
/
Copy pathpublish.yml
File metadata and controls
66 lines (55 loc) · 1.71 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
name: Publish Python 🐍 distribution 📦 to PyPI on tag
on:
push:
tags:
- 'v*'
permissions:
contents: read
jobs:
build:
name: Build distribution 📦
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: '3.12'
- name: Install uv and build
run: |
pip install uv
uv pip install --system build
- name: Install package dependencies
run: |
uv pip install --system .
- name: Test SDK imports
run: |
python -c "import rootly_sdk; print('SDK imports successfully')"
- name: Build package
run: |
python -m build
- name: Store distribution packages
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: python-package-distributions
path: dist/
publish-to-pypi:
name: Publish distribution 📦 to PyPI
needs: build
runs-on: blacksmith-2vcpu-ubuntu-2404
environment:
name: pypi
url: https://pypi.org/p/rootly
permissions:
id-token: write
steps:
- name: Download distribution packages
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: python-package-distributions
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # release/v1