-
Notifications
You must be signed in to change notification settings - Fork 2
62 lines (46 loc) · 1.31 KB
/
ci-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
name: CI/CD
on:
push:
tags:
- '**'
permissions: write
jobs:
check-tag-version-job:
name: Check Tag Version
runs-on: ubuntu-latest
steps:
- name: SCM Checkout
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/env
- name: Check Tag Version
# make sure the pushed/created tag matched the project version
run: "[[ `poetry version --short` == ${{ github.ref_name }} ]]"
ci-job:
name: Checks
needs: [ check-tag-version-job ]
uses: ./.github/workflows/checks.yml
cd-job:
name: Continues Delivery
needs: [ ci-job ]
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- name: SCM Checkout
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/env
- name: Build Artifacts
run: just build
- name: Publish package to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
- name: GitHub Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >
gh release create ${GITHUB_REF_NAME}
--title ${GITHUB_REF_NAME}
--notes-file doc/changes/changes_${GITHUB_REF_NAME}.md
dist/*