This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
134 lines (116 loc) · 3.09 KB
/
CD.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Copyright 2023 Jan-Hendrik Ewers
# SPDX-License-Identifier: GPL-3.0-only
name: CD
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
jobs:
setup-envs:
name: Set up the build names and such
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Version
id: version
shell: bash
run: |
v=${GITHUB_REF##*/}
echo "Version: $v"
echo "::set-output name=version::$v"
- name: Check version
shell: bash
run: |
rx='^v([0-9]+\.){0,2}(\*|[0-9]+)$'
VERSION=${{steps.version.outputs.version}}
if [[ $VERSION =~ $rx ]]; then
echo "INFO:<-->Version $VERSION"
else
echo "ERROR:<->Unable to validate package version: '$VERSION'"
exit 1
fi
generate-changelog:
name: Generate latest changelog
needs: setup-envs
runs-on: ubuntu-latest
outputs:
release_body: ${{ steps.release.outputs.release_body }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate latest changelog
uses: orhun/git-cliff-action@v2
id: git-cliff-latest
with:
args: -vv --latest --strip header
env:
OUTPUT: CHANGELOG.md
- name: Check CHANGELOG isn't empty
run: |
if [ -z "$(cat CHANGELOG.md)" ]
then
exit 1
fi
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: changelog
path: CHANGELOG.md
build-python:
name: Build python
needs: setup-envs
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Build wheels
run: pip wheel .
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: dist
path: pytest_extra_markers*.whl
publish:
name: Publish
needs: [generate-changelog,build-python,setup-envs]
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: dist
path: dist
- name: Download changelog
uses: actions/download-artifact@v3
with:
name: changelog
- name: Release
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
body_path: CHANGELOG.md
files: |
dist/**
name: "Release ${{needs.setup-envs.outputs.version}}"
generate_release_notes: false
- name: PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: dist/