Skip to content

Add github action and goreleaser #6

Add github action and goreleaser

Add github action and goreleaser #6

Workflow file for this run

name: goreleaser
on:
push:
# run only against tags
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
permissions:
contents: write
# packages: write
# issues: write
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.21.1'
cache: true
cache-dependency-path: |
cli/go.sum
# More assembly might be required: Docker logins, GPG, etc. It all depends
# on your needs.
- uses: goreleaser/goreleaser-action@v5
with:
# either 'goreleaser' (default) or 'goreleaser-pro':
distribution: goreleaser
version: ${{ env.GITHUB_REF_NAME }}
args: release --clean -f ./cli/.goreleaser.yaml
env:
GITHUB_TOKEN: ${{ secrets.PUBLISHER_TOKEN }}
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro'
# distribution:
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}