-
Notifications
You must be signed in to change notification settings - Fork 123
61 lines (52 loc) · 1.49 KB
/
pypi_release.yaml
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
---
name: libs - Release Publish to pypi
on:
release:
types: [published]
env:
POETRY_VERSION: "1.8.4"
jobs:
publish-to-pypi:
strategy:
matrix:
package:
- workdir: "libs/infinity_emb"
- workdir: "libs/client_infinity/infinity_client"
defaults:
run:
working-directory: ${{ matrix.package.workdir }}
runs-on: ubuntu-latest
environment:
name: publish
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python + Poetry ${{ env.POETRY_VERSION }}
uses: "./.github/actions/poetry_setup"
with:
python-version: "3.10"
poetry-version: ${{ env.POETRY_VERSION }}
working-directory: ${{ matrix.package.workdir }}
cache-key: release
- name: Copy readme
if: matrix.package.workdir == 'libs/infinity_emb'
id: readme-copy
run: |
cp ../../README.md .
- name: Build project for distribution
run: poetry build
- name: Check Version
id: check-version
run: |
echo version=$(poetry version --short) >> $GITHUB_OUTPUT
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: ${{ matrix.package.workdir }}/dist/
verbose: true
print-hash: true
modal-deploy:
needs: publish-to-pypi
uses: ./.github/workflows/release_modal_com.yaml
secrets: inherit