-
Notifications
You must be signed in to change notification settings - Fork 4
65 lines (54 loc) · 1.49 KB
/
release.yaml
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
name: release
on:
workflow_dispatch:
jobs:
prep-release:
if: github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Cache Pip
uses: actions/cache@v4
with:
path: ~/.pip
key: ${{ runner.os }}-pip
restore-keys: ${{ runner.os }}-pip
- run: poetry install
- name: Configure git
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email 'gha@prql-lang.org'
- name: Python Semantic Release
env:
GH_TOKEN: ${{ secrets.PRQL_BOT_GITHUB_TOKEN }}
run: |
poetry run semantic-release --verbose version --skip-build --no-vcs-release
poetry build
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
create-release:
needs: prep-release
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1