-
Notifications
You must be signed in to change notification settings - Fork 17
130 lines (113 loc) · 4.15 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
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
name: Release
on:
workflow_dispatch:
inputs:
deploy-to:
type: choice
description: Choose where to publish (test/prod)
options:
- prod
- test
default: prod
sha:
description: "The last commit sha in the release"
type: string
required: true
permissions:
contents: write # this is the permission that allows creating a new release
# 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 }}-${{ inputs.deploy-to }}
cancel-in-progress: true
jobs:
release-inputs:
name: PyPI - ${{ inputs.deploy-to }}
runs-on: ubuntu-latest
environment:
name: ${{ inputs.deploy-to }}
url: ${{ vars.PYPI_PROJECT_URL }}
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
outputs:
version: ${{ steps.version.outputs.version }}
archive-name: ${{ steps.archive.outputs.name }}
changelog-path: ${{ steps.changelog.outputs.path }}
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup `hatch`
uses: dbt-labs/dbt-adapters/.github/actions/setup-hatch@main
- name: Set version
id: version
run: |
version=$(hatch version)
echo "version=version" >> $GITHUB_OUTPUT
- name: Audit version and parse into parts
id: semver
uses: dbt-labs/actions/[email protected]
with:
version: ${{ steps.version.outputs.version }}
- name: Set archive name
id: archive
run: |
archive_name=dbt-postgres-$version-${{ inputs.deploy-to }}
echo "name=$archive_name" >> $GITHUB_OUTPUT
- name: Set changelog path
id: changelog
shell: bash
run: |
path=".changes/"
if [[ ${{ steps.semver.outputs.is-pre-release }} -eq 1 ]]
then
path+="${{ steps.semver.outputs.base-version }}-${{ steps.semver.outputs.pre-release }}.md"
else
path+="${{ steps.semver.outputs.base-version }}.md"
fi
echo "path=$path" >> $GITHUB_OUTPUT
pypi-release:
name: PyPI - ${{ inputs.deploy-to }}
runs-on: ubuntu-latest
needs: [release-inputs]
environment:
name: ${{ inputs.deploy-to }}
url: ${{ vars.PYPI_PROJECT_URL }}
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup `hatch`
uses: dbt-labs/dbt-adapters/.github/actions/setup-hatch@main
- name: Build `dbt-postgres`
uses: dbt-labs/dbt-adapters/.github/actions/build-hatch@main
with:
archive-name: ${{ needs.release-inputs.outputs.archive-name }}
- name: Publish to PyPI
uses: dbt-labs/dbt-adapters/.github/actions/publish-pypi@main
with:
pypi-repository-url: ${{ vars.PYPI_REPOSITORY_URL }}
archive-name: ${{ needs.release-inputs.outputs.archive-name }}
github-release:
name: GitHub Release
if: ${{ !failure() && !cancelled() }}
needs: [release-inputs]
uses: dbt-labs/dbt-release/.github/workflows/github-release.yml@main
with:
sha: ${{ inputs.sha }}
version_number: ${{ needs.release-inputs.outputs.version }}
changelog_path: ${{ needs.release-inputs.outputs.changelog-path }}
test_run: ${{ inputs.deploy-to == 'test' }}
docker-release:
name: "Docker Release"
needs: [release-inputs, github-release] # docker relies on the published tag from github-release
if: ${{ !failure() && !cancelled() }}
permissions:
packages: write
uses: dbt-labs/dbt-release/.github/workflows/release-docker.yml@main
with:
version_number: ${{ needs.release-inputs.outputs.version }}
test_run: ${{ inputs.deploy-to == 'test' }}