Update module golang.org/x/net to v0.23.0 [SECURITY] #163
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'goreleaser' | |
on: | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
release: | |
types: [ published ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: 'Build Binaries' | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repo | |
- name: 'Checkout' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Setup Go | |
- name: 'Setup Go' | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.19' | |
# Print Go version | |
- run: go version | |
# Build and release | |
- name: Build release | |
if: (github.event_name == 'release' && github.event.action == 'published') || (github.event_name == 'workflow_dispatch' && github.ref_name == 'master') | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Trial build | |
- name: Test build | |
if: github.event_name == 'pull_request' || (github.event_name == 'workflow_dispatch' && github.ref_name != 'master') | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean --snapshot |