-
Notifications
You must be signed in to change notification settings - Fork 3
54 lines (46 loc) · 1.48 KB
/
python-publish.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
name: Python Publish
on:
workflow_dispatch: # for debug
push:
branches: [main]
tags:
- v*.*.*
permissions: read-all
jobs:
release:
runs-on: ubuntu-latest
if: ${{ github.ref_name != 'main' }}
permissions:
contents: write
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Setup python environment
uses: ./.github/actions/python-setup
- name: Build package
id: build
run: |
poetry run seman sbom
poetry build
echo "package_tar=`ls dist/ | grep .tar.gz`" >> $GITHUB_OUTPUT
echo "package_whl=`ls dist/ | grep .whl`" >> $GITHUB_OUTPUT
- name: Upload package to artifact
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
with:
name: package
path: dist/
- name: Upload package to release asset
uses: softprops/action-gh-release@3198ee18f814cdf787321b4a32a26ddbf37acc52
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
generate_release_notes: true
files: |
dist/${{ steps.build.outputs.package_tar }}
dist/${{ steps.build.outputs.package_whl }}
- name: Upload package to pypi
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}