Skip to content

Fix LSP formatting that broke in v0.26.0 (#1055) #43

Fix LSP formatting that broke in v0.26.0 (#1055)

Fix LSP formatting that broke in v0.26.0 (#1055) #43

Workflow file for this run

name: Push Tags
on:
push:
tags:
- v[0-9].**
permissions:
# this is needed to create a release
contents: write
# this is needed to create artifacts in ghcr
packages: write
jobs:
goreleaser:
name: GoReleaser
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: go.mod
check-latest: true
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0
with:
install-only: true
- name: Generate GitHub App Token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
with:
app_id: ${{ secrets.PLATFORM_AUTOMATION_GH_APP_ID }}
private_key: ${{ secrets.PLATFORM_AUTOMATION_GH_APP_PEM_KEY }}
- name: Run GoReleaser
run: goreleaser release
env:
TAP_GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}