-
Notifications
You must be signed in to change notification settings - Fork 27
56 lines (47 loc) · 1.42 KB
/
testpypi-release.yaml
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
name: Build and Upload xbatcher to TestPyPI
on:
push:
branches:
- main
# pull_request:
# branches:
# - main
permissions:
contents: read
jobs:
publish-testpypi:
name: Publish to Test PyPI
runs-on: ubuntu-latest
if: github.repository == 'xarray-contrib/xbatcher'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# fetch all history so that setuptools-scm works
fetch-depth: 0
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.11"
- name: Install dependencies
run: python -m pip install build
- name: Fix up version string for TestPyPI
if: ${{ !startsWith(github.ref, 'refs/tags') }}
run: |
sed --in-place "s/node-and-date/no-local-version/g" pyproject.toml
- name: Build tarball and wheels
run: |
python -m build
echo "Generated files:"
ls -lh dist/
- name: Verify the built dist/wheel is valid
run: |
python -m pip install --upgrade pip
python -m pip install dist/xbatcher*.whl
python -m xbatcher.util.print_versions
- name: Publish package to TestPyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
# verbose: true