Skip to content

Bump github.com/yuin/goldmark from 1.7.7 to 1.7.8 (#629) #148

Bump github.com/yuin/goldmark from 1.7.7 to 1.7.8 (#629)

Bump github.com/yuin/goldmark from 1.7.7 to 1.7.8 (#629) #148

Workflow file for this run

name: Release Go project
on:
push:
tags:
- "*" # triggers only if push new tag version, like `0.8.4` or else
jobs:
build:
name: GoReleaser build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0 # See: https://goreleaser.com/ci/actions/
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
id: go
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}