-
Notifications
You must be signed in to change notification settings - Fork 13
40 lines (33 loc) · 1.01 KB
/
release.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
---
# It is not currently possible to use trusted publishing with a shared workflow
# https://github.com/pypi/warehouse/blob/main/docs/user/trusted-publishers/troubleshooting.md#reusable-workflows-on-github
# this file is for reference only now
name: release
on:
workflow_call:
jobs:
release:
name: release ${{ github.event.ref }}
environment: release
runs-on: ubuntu-24.04
permissions:
id-token: write
env:
FORCE_COLOR: 1
PY_COLORS: 1
TOX_PARALLEL_NO_SPINNER: 1
steps:
- name: Switch to using Python 3.12 by default
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install tox
run: python3 -m pip install --user "tox>=4.0.0"
- name: Check out src from Git
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
- name: Build dists
run: python3 -m tox -e pkg
- name: Publish to pypi.org
uses: pypa/gh-action-pypi-publish@release/v1