-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (62 loc) · 1.68 KB
/
publish-sdk.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
name: Publish Python SDK to PyPI
on:
pull_request:
types:
- opened
- reopened
branches:
- main
- github-actions-test
workflow_dispatch:
branches:
- main
- github-actions-test
# Permissions to create PR, to write changes, to use PyPi auth
permissions:
pull-requests: write
contents: write
id-token: write
jobs:
publish_package:
if: startsWith(github.head_ref, 'release')
name: Publish Python SDK to PyPI
runs-on: ubuntu-latest
strategy:
matrix:
package_folder:
# - visier_api_core
- visier_api_administration
# - visier_api_analytic_model
# - visier_api_data_in
# - visier_api_data_out
steps:
- name: Check out code
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine build
- name: Build package
run: |
cd "src/${{ matrix.package_folder }}"
python -m build --outdir ./dist
- name: Publish PyPi package
uses: pypa/[email protected]
with:
packages-dir: "src/${{ matrix.package_folder }}/dist"
# merge_pr:
# needs: publish_package
# if: needs.publish_package.result == 'success'
# name: Merge PR
# runs-on: ubuntu-latest
# steps:
# - name: Check out before merge
# uses: actions/checkout@v4
#
# - name: Merge PR
# env:
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: |
# gh pr merge ${{ github.event.pull_request.number }} --merge --delete-branch