go-test-color/.github/workflows/goreleaser.yaml

28 lines
515 B
YAML
Raw Normal View History

2022-04-13 08:26:32 +00:00
name: goreleaser
on:
push:
tags:
- "*"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
2022-07-23 16:09:47 +00:00
- uses: actions/checkout@v3
2022-04-13 08:26:32 +00:00
with:
fetch-depth: 0
- uses: actions/setup-go@v4
2022-04-13 08:26:32 +00:00
with:
2023-06-30 08:01:52 +00:00
go-version: "stable"
- uses: goreleaser/goreleaser-action@v4
2022-04-13 08:26:32 +00:00
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}