-
Notifications
You must be signed in to change notification settings - Fork 45
37 lines (37 loc) · 1.04 KB
/
release.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
name: release
on:
push:
branches: [ develop ]
tags: ['**']
pull_request:
branches: [ develop ]
jobs:
release:
if: github.repository == 'mcmtroffaes/sphinxcontrib-bibtex'
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
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 -U pip
python -m pip install -U twine wheel build
- name: Build package
run: |
python -m build --sdist --wheel
twine check dist/*
- name: Publish to Test PyPI
if: ${{ !startsWith(github.ref, 'refs/tags') }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
skip-existing: true
- name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1