Skip to content

feat: add input list, JSON output, unicode encoding, and custom paylo… #33

feat: add input list, JSON output, unicode encoding, and custom paylo…

feat: add input list, JSON output, unicode encoding, and custom paylo… #33

Workflow file for this run

name: Release nomore403 binary
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 1.24
uses: actions/setup-go@v4
with:
go-version: 1.24
id: go
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: v1.18.2
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}