generated from dbt-labs/dbt-oss-template
-
Notifications
You must be signed in to change notification settings - Fork 15
88 lines (74 loc) · 2.45 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
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
name: Release
on:
workflow_dispatch:
inputs:
target_branch:
description: "The branch to release from"
type: string
required: true
version_number:
description: "The release version number (i.e. 1.0.0b1)"
type: string
required: true
test_run:
description: "Test run (Publish release as draft)"
type: boolean
default: true
required: false
deploy-to:
type: choice
description: Choose where to publish (test/prod)
options:
- PypiProd
- PypiTest
default: PypiTest
permissions: read-all
defaults:
run:
shell: bash
# will cancel previous workflows triggered by the same event and for the same ref for PRs or same SHA otherwise
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.ref || github.sha }}
cancel-in-progress: true
jobs:
release:
name: PyPI - ${{ inputs.deploy-to }}
runs-on: ubuntu-latest
environment:
name: ${{ inputs.deploy-to }}
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Check out target branch
uses: actions/checkout@v4
with:
persist-credentials: false
ref: ${{ inputs.target_branch }}
- name: "Set up Python & Hatch - 3.11"
uses: ./.github/actions/setup-python-hatch
with:
python-version: "3.11"
- name: Run tests
run: hatch test
shell: bash
- name: Build artifacts
run: hatch build
shell: bash
- name: Prepare changelog and set new version version_number
uses: ./.github/workflows/release-prep.yml
with:
sha: ${{ github.sha }}
version_number: ${{ inputs.version_number }}
target_branch: ${{ inputs.target_branch }}
test_run: ${{ inputs.test_run }}
- name: Check artifacts
run: hatch run build:check-all
shell: bash
- name: Publish artifacts to PyPI Test
if: inputs.deploy-to == 'PypiTest' && !inputs.test_run
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
- name: Publish artifacts to PyPI Prod
if: inputs.deploy-to == 'PypiProd' && !inputs.test_run
uses: pypa/gh-action-pypi-publish@release/v1