Skip to content

Please do not log when you're not supposed to (#11) #10

Please do not log when you're not supposed to (#11)

Please do not log when you're not supposed to (#11) #10

Workflow file for this run

name: GoReleaser
on:
push:
tags:
- "**"
defaults:
run:
shell: bash
jobs:
depoy:
name: Goreleaser
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup
uses: actions/setup-go@v2
with:
go-version: "^1.13"
- name: GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}