Skip to content

chore(cli): bump version (#355) #33

chore(cli): bump version (#355)

chore(cli): bump version (#355) #33

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@v4
with:
lfs: 'true'
- 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@v5
with:
go-version: "1.21"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}