Skip to content

Update docs link

Update docs link #43

Workflow file for this run

name: release
on:
push:
tags:
- "v*.*.**"
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Install cross-compilers
run: sudo apt-get install gcc-mingw-w64 gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}