Skip to content

Reduce kernels to one old and one recent version #6

Reduce kernels to one old and one recent version

Reduce kernels to one old and one recent version #6

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# We need to do this because of:
# https://github.com/actions/checkout/issues/290 and its side-effects
# as https://github.com/goreleaser/goreleaser/issues/2919
- name: Fetch full annotated tags metadata
run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}