-
Notifications
You must be signed in to change notification settings - Fork 6
38 lines (32 loc) · 912 Bytes
/
cd.yml
File metadata and controls
38 lines (32 loc) · 912 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
35
36
37
38
name: Release
on:
release:
types: [created]
jobs:
publish:
name: Publish
environment: PyPI
runs-on: ubuntu-24.04
permissions:
contents: read
id-token: write
steps:
- name: Checkout Repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: '3.9'
cache: 'poetry'
- name: Setup
run: poetry env use 3.9
- name: Environment information
run: poetry env info
- name: Build package
run: poetry build
- name: Publish - PyPI
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0