-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (35 loc) · 1.19 KB
/
deploytestpypi.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
---
name: Upload Package to TestPyPI
on:
push:
branches:
- '*'
tags:
- '*'
repository_dispatch:
types: [trigger_checks]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
cache: pip
python-version-file: .python-version
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
python3 -m pip install --upgrade setuptools setuptools_scm[toml] wheel twine build
- name: Build
run: |
python3 -m setuptools_scm
python3 setup.py sdist bdist_wheel
# python3 -m build --sdist --wheel --outdir dist/ .
twine check dist/*
- name: Publish to Test PyPI
run: |
twine upload --skip-existing --verbose -r testpypi -u __token__ -p ${{ secrets.TESTPYPI_TOKEN }} --non-interactive dist/*