-
Notifications
You must be signed in to change notification settings - Fork 76
38 lines (30 loc) · 973 Bytes
/
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
38
name: release
on:
push:
tags:
- 'v*' # only release a versioned tag, such as v.X.Y.Z
jobs:
release:
runs-on: ubuntu-latest
environment: release
permissions:
# Used to authenticate to PyPI via OIDC and sign the release's artifacts with sigstore-python.
id-token: write
# Used to attach signing artifacts to the published release.
contents: write
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: 'pip' # caching pip dependencies
cache-dependency-path: setup.py
- name: Install pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -U -e ".[dev]"
- name: Build dist
run: pip wheel -w dist . --no-deps
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1