Skip to content

Update module github.com/go-git/go-git/v6 to v6.0.0-alpha.5 [SECURITY… #23

Update module github.com/go-git/go-git/v6 to v6.0.0-alpha.5 [SECURITY…

Update module github.com/go-git/go-git/v6 to v6.0.0-alpha.5 [SECURITY… #23

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
packages: write
jobs:
publish:
name: Publish
runs-on: macos-latest
steps:
- name: Checkout Repo
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- name: Unshallow clone for tags
run: git fetch --prune --unshallow --tags || true
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.26.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@f06c13b6b1a9625abc9e6e439d9c05a8f2190e94 # v7
with:
distribution: goreleaser
version: latest
args: release --clean -p 10 -f .goreleaser.yml --skip=validate --timeout 60m0s
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}