-
Notifications
You must be signed in to change notification settings - Fork 3
52 lines (50 loc) · 1.5 KB
/
python-package-deploy-bw25.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
---
# Inspired from:
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
name: Build and publish bw25ui Python 🐍 distributions 📦 to PyPI
on:
push:
branches: [main, develop]
paths-ignore:
# Don't re-build if we only change README.md Or CHANGES.md
- '**.md'
env:
BW2UI_DIST_NAME: bw25ui
jobs:
build-n-publish:
name: Build and publish bw25ui Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Prepare distribution name
run: >-
sed -i "s/name = \"bw2ui\"/name = \"$BW2UI_DIST_NAME\"/g" pyproject.toml
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--outdir dist/
.
#- name: Publish distribution 📦 to Test PyPI
#uses: pypa/gh-action-pypi-publish@release/v1
#with:
#repository-url: https://test.pypi.org/legacy/
#skip-existing: true
- name: Publish distribution 📦 to PyPI
#if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1