gomailer/.github/workflows/build.yml

27 lines
579 B
YAML
Raw Normal View History

2023-04-08 11:39:08 +00:00
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 }}