-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (50 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Release Package
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
id-token: write # required for trusted publishing to pypi
contents: write # required for tag creation
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
fetch-depth: 20
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: 3.9
cache: true
- name: Setup PDM bump plugin
run: |
pdm self add pdm-bump
- name: Detect and tag new version
id: check-version
uses: salsify/[email protected]
with:
version-command: |-
pdm show --version
- name: Bump version for developmental release
if: "! steps.check-version.outputs.tag"
run: |
dev_version="$(echo $(pdm show --version).dev$(date +%s))"
pdm bump to "$dev_version"
- name: Install dependencies with PDM
run: |
pdm install
- name: Build package
run: |
pdm build
- name: Publish package on PyPI
if: steps.check-version.outputs.tag
uses: pypa/gh-action-pypi-publish@release/v1
- name: Publish package on TestPyPI
if: "! steps.check-version.outputs.tag"
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/