-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) · 1.61 KB
/
publish-to-test-pypi.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
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- name: Checking out..
uses: actions/checkout@v3
with:
token: ${{ secrets.PUBLISH_PYPI_TOKEN }}
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: 'pip'
- name: Install dependencies 📦
run: |
python -m pip install --upgrade pip setuptools wheel twine
pip install -r requirements.txt
- name: Use Python Semantic Release to prepare release 🚀
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name Patrick Mazulo
git config user.email pmazulo@gmail.com
semantic-release publish
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true
verbose: true
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true
verbose: true