-
Notifications
You must be signed in to change notification settings - Fork 56
71 lines (62 loc) · 1.42 KB
/
build-api.yml
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
name: Build API
on:
push:
branches:
- main
paths:
- livekit-api/**
tags:
- "api-v*.*.*"
pull_request:
branches:
- main
paths:
- livekit-api/**
workflow_dispatch:
env:
PACKAGE_DIR: ./livekit-api
jobs:
build_wheels:
name: Build API wheel/sdist
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ env.PACKAGE_DIR }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
- name: Build wheel & sdist
run: |
pip3 install build wheel
python3 -m build --wheel --sdist
- uses: actions/upload-artifact@v4
with:
name: api-release
path: |
livekit-api/dist/*.whl
livekit-api/dist/*.tar.gz
publish:
name: Publish API release
needs: build_wheels
runs-on: ubuntu-latest
permissions:
id-token: write
if: startsWith(github.ref, 'refs/tags/api-v')
steps:
- uses: actions/download-artifact@v4
with:
name: api-release
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
docs:
needs: [publish]
uses: ./.github/workflows/build-docs.yml
with:
package_dir: "livekit-api"
package_name: "livekit.api"
secrets: inherit