Skip to content

chore(deps): bump github.com/sirupsen/logrus from 1.9.3 to 1.9.4 #311

chore(deps): bump github.com/sirupsen/logrus from 1.9.3 to 1.9.4

chore(deps): bump github.com/sirupsen/logrus from 1.9.3 to 1.9.4 #311

Workflow file for this run

name: goreleaser
on:
pull_request:
push:
tags:
- "*"
jobs:
goreleaser:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
if: startsWith(github.ref, 'refs/tags/')
with:
version: v2.1.0
args: "release --clean"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
if: startsWith(github.ref, 'refs/pull/')
with:
version: v2.1.0
args: "release --clean --snapshot"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}