populatedb-go/.github/workflows/goreleaser.yml

28 lines
515 B
YAML
Raw Permalink Normal View History

2022-11-06 11:03:37 +00:00
name: goreleaser
on:
push:
tags:
- "*"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2022-11-06 11:03:37 +00:00
with:
fetch-depth: 0
- uses: actions/setup-go@v5
2022-11-06 11:03:37 +00:00
with:
2023-07-06 03:09:12 +00:00
go-version: "stable"
- uses: goreleaser/goreleaser-action@v5
2022-11-06 11:03:37 +00:00
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}