94 lines
3.1 KiB
YAML
94 lines
3.1 KiB
YAML
# 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod
|
|
~/go/bin
|
|
~/.cache
|
|
key: livekit-cli
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
|
|
with:
|
|
go-version: "1.25"
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@ec59f474b9834571250b370d4735c50f8e2d1e29 # v7
|
|
with:
|
|
distribution: goreleaser
|
|
version: latest
|
|
args: release --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|