Skip to content

Bump golang.org/x/net from 0.33.0 to 0.36.0 in the go_modules group #15

Bump golang.org/x/net from 0.33.0 to 0.36.0 in the go_modules group

Bump golang.org/x/net from 0.33.0 to 0.36.0 in the go_modules group #15

Workflow file for this run

name: Publish Binaries on Release
on:
pull_request:
push:
# run only against tags
tags:
- "*"
permissions:
contents: read
jobs:
goreleaser:
permissions:
contents: write
packages: write
runs-on: ubuntu-latest
env:
flags: ""
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Configure GoReleaser
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
run: echo "flags=--snapshot" >> "$GITHUB_ENV"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
# 'latest', 'nightly', or a semver
version: "~> v2"
args: release --clean ${{ env.flags }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}