Skip to content

Use Go 1.23, support imported type aliases (#225) #7

Use Go 1.23, support imported type aliases (#225)

Use Go 1.23, support imported type aliases (#225) #7

Workflow file for this run

name: goreleaser
on:
push:
tags:
- 'v[0-9]*'
workflow_dispatch:
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
-
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22
cache: true
check-latest: true
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}