-
Notifications
You must be signed in to change notification settings - Fork 384
92 lines (88 loc) · 3.08 KB
/
cd.yml
File metadata and controls
92 lines (88 loc) · 3.08 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
name: Python CD
on:
push:
branches: [develop]
release:
types: [published]
workflow_dispatch:
env:
DIST_DIR: dist/
jobs:
build-distributables:
# Why building is separate from publishing:
# https://github.com/pypa/gh-action-pypi-publish/issues/217#issuecomment-1965727093
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get-version.outputs.version }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
persist-credentials: false
- uses: ./.github/actions/setup-sdk-environment
with:
python-version: 3.13
deps-group: release
- name: Set pre-release version
id: set-version
if: startsWith(github.ref, 'refs/tags/') != true
run: |
VERSION_BASE="$(uv version --short)"
RUN_NUMBER="${{ github.run_number }}"
uv version --frozen "${VERSION_BASE}.dev${RUN_NUMBER}"
- name: Get current version
id: get-version
run: echo "version=$(uv version --short)" >> "$GITHUB_OUTPUT"
- name: Build packages for distribution
run: uv build
- name: Run AppInspect
uses: ./.github/actions/run-appinspect
- name: Upload distributables
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: splunk-sdk-${{ steps.get-version.outputs.version }}
path: ${{ env.DIST_DIR }}
- name: Generate API reference
run: make -C ./docs html
- name: Upload docs artifact
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: python-sdk-docs
path: docs/_build/html
publish-pre-release:
if: startsWith(github.ref, 'refs/tags/') == false
needs: build-distributables
runs-on: ubuntu-latest
permissions:
id-token: write
environment:
name: splunk-test-pypi
url: https://test.pypi.org/project/splunk-sdk/
steps:
- name: Download distributables
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: splunk-sdk-${{ needs.build-distributables.outputs.version }}
path: ${{ env.DIST_DIR }}
- name: Publish packages to Test PyPI
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b
with:
repository-url: https://test.pypi.org/legacy/
publish-release:
if: startsWith(github.ref, 'refs/tags/') == true
needs: build-distributables
runs-on: ubuntu-latest
permissions:
id-token: write
environment:
name: splunk-pypi
url: https://pypi.org/project/splunk-sdk/
steps:
- name: Download distributables
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: splunk-sdk-${{ needs.build-distributables.outputs.version }}
path: ${{ env.DIST_DIR }}
- name: Publish packages to PyPI
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b
with:
repository-url: https://pypi.org/legacy/