Skip to content

fix: Bring the cursor back when switching from commit files view to t… #12

fix: Bring the cursor back when switching from commit files view to t…

fix: Bring the cursor back when switching from commit files view to t… #12

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Get Go version
id: go_version
run: awk '{if($1 == "go") print "version=" $2}' go.mod >> "$GITHUB_OUTPUT"
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ steps.go_version.outputs.version }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v7
with:
distribution: goreleaser
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}