-
Notifications
You must be signed in to change notification settings - Fork 10
70 lines (60 loc) · 1.93 KB
/
Copy pathrelease.yaml
File metadata and controls
70 lines (60 loc) · 1.93 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
67
68
69
70
name: Create Release
on:
push:
tags:
- 'v*.*.*' # 仅在版本标签推送时触发
jobs:
create-release:
runs-on: ubuntu-latest
permissions:
contents: write # 允许写入内容
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # 拉取完整提交历史
fetch-tags: true # 关键:拉取所有标签
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23' # 请根据需要选择合适的 Go 版本
- name: Install Flatbuffers
run: |
wget -q https://github.com/google/flatbuffers/releases/download/v24.12.23/Linux.flatc.binary.clang++-18.zip
unzip Linux.flatc.binary.clang++-18.zip
sudo cp flatc /usr/local/bin
rm flatc Linux.flatc.binary.clang++-18.zip
- name: Verify Go Version
run: go version
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Verify Python Version
run: python --version
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Install Docker
uses: docker/setup-buildx-action@v2
- name: Install Dependencies & Compile Files
run: |
sudo apt install portaudio19-dev libx11-dev libxtst-dev
# curl -fsSL https://get.docker.com -o get-docker.sh
# sudo sh get-docker.sh
make
- name: Create GitHub Release
id: create_release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref_name }}
release_name: Release ${{ github.ref_name }}
body: |
SPEAR release version ${{ github.ref_name }}.
files: |
./bin/spearlet
./sdk/python/dist/spearlet-*.whl
./sdk/python/dist/spearlet-*.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # 使用 GitHub 提供的令牌