-
Notifications
You must be signed in to change notification settings - Fork 264
34 lines (32 loc) · 1000 Bytes
/
Copy pathpypi-release.yml
File metadata and controls
34 lines (32 loc) · 1000 Bytes
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
name: pypi-publish
on:
push:
branches: ["master", "dev"]
workflow_dispatch:
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
environment:
name: pypi
url: https://pypi.org/p/pyglossary
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Create release
id: create-release
run: ./.github/scripts/create-release.sh
- name: Publish package distributions to PyPI
if: ( steps.create-release.outputs.skipnext != 'true' )
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
verbose: true
password: ${{ secrets.PYPI_API_TOKEN }}