-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (55 loc) · 1.53 KB
/
release.yml
File metadata and controls
66 lines (55 loc) · 1.53 KB
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
name: Release
on:
workflow_dispatch:
push:
# release on tag push
tags:
- '*'
permissions:
contents: write
jobs:
build_wheels:
name: Build wheels
permissions:
contents: read
uses: ./.github/workflows/wheels.yml
build_docs:
name: Build docs
uses: ./.github/workflows/sphinx.yml
create_release:
name: Create Release
needs: [build_wheels, build_docs]
runs-on: ubuntu-22.04
steps:
- name: Get version
id: get_version
run: |
echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
echo ${{ env.VERSION }}
- uses: actions/checkout@v6
with:
fetch-depth: 0
# download all artifacts to project dir
- uses: actions/download-artifact@v6
- name: check artifacts
run: |
ls -l packages/
- name: Generate changes file
uses: sarnold/gitchangelog-action@915234f151ceffb7a8c4f76de77e4ae321087b8f # v1.1.1
with:
github_token: ${{ secrets.GITHUB_TOKEN}}
- name: Create release
id: create_release
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.VERSION }}
name: Release v${{ env.VERSION }}
body_path: CHANGES.md
draft: false
prerelease: false
files: |
packages/*.whl
packages/*.tar.gz