generated from epignatelli/python-library
-
Notifications
You must be signed in to change notification settings - Fork 6
58 lines (48 loc) · 1.46 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
name: CD
on:
workflow_dispatch:
push:
branches:
- "main"
jobs:
release:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get version from file
run: |
HELX_VERSION="$(cat helx/_version.py | grep '__version__ = ' | cut -d'=' -f2 | sed 's,\",,g' | sed "s,\',,g" | sed 's, ,,g')"
echo "Current version is:"
echo "$HELX_VERSION"
echo "HELX_VERSION=$HELX_VERSION" >> $GITHUB_ENV
- name: Create changelog and push tag
id: changelog
uses: TriPSs/conventional-changelog-action@v3
with:
output-file: false
fallback-version: ${{ env.HELX_VERSION }}
skip-commit: true
- name: Create Release
uses: ncipollo/release-action@v1
with:
tag: ${{ env.HELX_VERSION }}
name: "HELX release v${{ env.HELX_VERSION }}"
body: ${{ steps.changelog.outputs.clean_changelog }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install pypa/build
run: |
python -m pip install build
- name: Build wheel and sdist
run: |
python -m build --sdist --wheel --outdir dist/ .
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true