fix: log but don't send back file read errors in documentSymbol handl… #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push Tags | |
on: | |
push: | |
tags: | |
- v[0-9].** | |
jobs: | |
goreleaser: | |
name: GoReleaser | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- name: Install GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
install-only: true | |
- name: Generate GitHub App Token | |
id: generate_token | |
uses: tibdex/github-app-token@v2 | |
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 }} |