Files
livekit-cli/.github/workflows/release.yaml
Tobias Fried 6336374781 feat(cmd): auth subcommand (#371)
* feat(cmd): begin implementing auth subcommand

* feat(cmd): complete poll logic and prettify with a spinner

* chore(auth): move auth subcommand under cloud command

* chore(deps): update deps

* chore(auth): auto-open browser window for auth

* fix(auth): handle cancellation of auth polling

* feat(auth): add revocation of keys

* chore(deps): updates

* chore(cloud): hide cloud commands until dogfooded

* chore(ci): update go and staticcheck versions
2024-08-10 00:51:49 -06:00

63 lines
1.4 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@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.22"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}