Skip to content

Add argument for h26x streaming format. (#720) #83

Add argument for h26x streaming format. (#720)

Add argument for h26x streaming format. (#720) #83

Workflow file for this run

# 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@v5
with:
lfs: 'true'
- 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@v4
with:
path: |
~/go/pkg/mod
~/go/bin
~/.cache
key: livekit-cli
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}