-
Notifications
You must be signed in to change notification settings - Fork 141
93 lines (82 loc) · 2.96 KB
/
release.yaml
File metadata and controls
93 lines (82 loc) · 2.96 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Copyright 2023 LiveKit, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Release
# on events
on:
push:
tags:
- v*
permissions:
contents: write
# workflow tasks
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Git LFS
uses: actions/checkout@v6
with:
lfs: 'true'
- name: Verify version.go matches tag
run: |
TAG_VERSION=${GITHUB_REF#refs/tags/v}
CODE_VERSION=$(sed -n 's/.*Version = "\([^"]*\)".*/\1/p' version.go)
echo "Tag version: v$TAG_VERSION"
echo "Code version: $CODE_VERSION"
if [ "$TAG_VERSION" != "$CODE_VERSION" ]; then
echo "ERROR: Version mismatch!"
echo " Tag: v$TAG_VERSION"
echo " version.go: $CODE_VERSION"
exit 1
fi
echo "✓ Versions match: $CODE_VERSION"
- name: Verify server-sdk-go version
run: |
livekit_cli_ver=${GITHUB_REF#refs/tags/}
server_sdk_go_ver=$(git ls-remote --tags --sort='v:refname' https://github.com/livekit/server-sdk-go.git \
| awk -F'refs/tags/' '{print $2}' \
| grep -E '^v[0-9]+\.[0-9]+' \
| tail -n1)
livekit_cli_major_minor=$(echo "$livekit_cli_ver" | sed -E 's/^v([0-9]+\.[0-9]+)\..*/\1/')
server_sdk_go_major_minor=$(echo "$server_sdk_go_ver" | sed -E 's/^v([0-9]+\.[0-9]+)\..*/\1/')
echo "livekit-cli: $livekit_cli_ver ($livekit_cli_major_minor)"
echo "server-sdk-go: $server_sdk_go_ver ($server_sdk_go_major_minor)"
if [ "$livekit_cli_major_minor" != "$server_sdk_go_major_minor" ]; then
echo "version mismatch: livekit-cli ($livekit_cli_major_minor) ≠ server-sdk-go ($server_sdk_go_major_minor)"
exit 1
fi
echo "versions match ($livekit_cli_major_minor)"
- run: git lfs pull
- name: Fetch all tags
run: git fetch --force --tags
- uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
~/go/bin
~/.cache
key: livekit-cli
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v7
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}