-
Notifications
You must be signed in to change notification settings - Fork 33
45 lines (42 loc) · 1.14 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
# based on CumulusCI's release.yml
name: Release snowfakery
on:
push:
branches:
- main
paths:
- snowfakery/__about__.py
workflow_dispatch:
concurrency: publishing
jobs:
publish-to-pypi:
name: Publish new release to PyPI
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: pip
- name: Set up uv
uses: SFDO-Tooling/setup-uv@main
with:
version: "0.5.0"
enable-cache: true
- name: Build source tarball and binary wheel
run: uv tool run hatch build -c
- name: Upload to PyPI
run: uv tool run hatch publish
env:
HATCH_INDEX_USER: "__token__"
HATCH_INDEX_AUTH: ${{ secrets.PYPI_TOKEN }}
- name: Create release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
VERSION="$(uv tool run hatch version)"
gh release create "v$VERSION" \
dist/*.whl \
dist/*.tar.gz \
--title $VERSION