-
Notifications
You must be signed in to change notification settings - Fork 141
54 lines (49 loc) · 1.63 KB
/
build-publish-test.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
# Build package & publish a release to PyPI (test)
# Given a tag, downloads the associated code, builds the package, and uploads the source tarball as artifact
# This version releases to https://test.pypi.org/ for testing purposes
# Triggers on: all published releases (incl pre-releases)
name: Build package & release to PyPI (test)
on:
release:
types: [published]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build a source tarball
run: python -m build --sdist
- name: Store the distribution packages
uses: actions/[email protected]
with:
name: python-package-distributions-${{ github.ref_name }}
path: dist/
publish-test:
needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi-publish-test
url: https://test.pypi.org/p/medpy
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download dists
uses: actions/[email protected] # make sure that same major version as actions/upload-artifact
with:
name: python-package-distributions-${{ github.ref_name }}
path: dist/
- name: Publish package
uses: pypa/[email protected]
with:
repository-url: https://test.pypi.org/legacy/ # test publish platform