Skip to content

ref: print shortcuts #32

ref: print shortcuts

ref: print shortcuts #32

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Run releaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release -f .goreleaser.yml --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}