srpmproc/.github/workflows/go.yml

28 lines
542 B
YAML
Raw Normal View History

2021-06-08 18:08:09 +00:00
name: Go
on:
2021-06-08 18:09:14 +00:00
push:
tags:
- '*'
2021-06-08 18:08:09 +00:00
jobs:
2021-06-08 18:09:14 +00:00
release:
2021-06-08 18:08:09 +00:00
runs-on: ubuntu-latest
steps:
- name: Checkout
2024-06-11 05:20:11 +00:00
uses: actions/checkout@v4
2021-06-08 18:08:09 +00:00
with:
fetch-depth: 0
- name: Set up Go
2024-06-11 05:20:11 +00:00
uses: actions/setup-go@v5
2021-06-08 18:08:09 +00:00
with:
2024-06-11 04:24:24 +00:00
go-version: 1.21
2021-06-08 18:08:09 +00:00
- name: Run GoReleaser
2024-06-11 05:20:11 +00:00
uses: goreleaser/goreleaser-action@v6
2021-06-08 18:08:09 +00:00
with:
distribution: goreleaser
version: latest
2024-06-11 04:55:16 +00:00
args: release --clean
2021-06-08 18:08:09 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}