Skip to content

build: bump cocoon to v0.6.2 #17

build: bump cocoon to v0.6.2

build: bump cocoon to v0.6.2 #17

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
- name: Extract VERSION
run: echo "VERSION=$(git describe --tags --always)" >> $GITHUB_ENV
- name: Set up Go
uses: actions/setup-go@v7.0.0
with:
go-version-file: 'go.mod'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v7.2.3
with:
version: v2.18.0
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ env.VERSION }}