Trying to add a go-releaser whatever that is #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Release | |
on: | |
push: | |
tags: | |
- 'test-release*' # Only triggers on tags starting with 'test-release' | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Fetch All Tags | |
run: git fetch --force --tags | |
- name: Setup Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '1.18.1' | |
- name: Run GoReleaser (Skip Publishing) | |
uses: goreleaser/goreleaser-action@v2 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --rm-dist --skip-publish # Test the build without creating a release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |