27 lines
579 B
YAML
27 lines
579 B
YAML
|
name: goreleaser
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ main, ci ]
|
||
|
|
||
|
jobs:
|
||
|
goreleaser:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- run: git fetch --force --tags
|
||
|
- uses: actions/setup-go@v3
|
||
|
with:
|
||
|
go-version: '>=1.20.1'
|
||
|
- name: goreleaser
|
||
|
uses: https://github.com/goreleaser/goreleaser-action@v4
|
||
|
with:
|
||
|
distribution: goreleaser
|
||
|
version: latest
|
||
|
args: release --nightly
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
|