Skip to content

build: add release action #1

build: add release action

build: add release action #1

Workflow file for this run

name: Release Go project
on:
push:
tags:
- "*" # trigger only if push new tag version
jobs:
build:
name: Go Releaser Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0 # See: https://goreleaser.com/ci/actions/
- name: Set up Go
uses: actions/setup-go@v4
with:

Check failure on line 21 in .github/workflows/release_build.yml

View workflow run for this annotation

GitHub Actions / Release Go project

Invalid workflow file

The workflow is not valid. .github/workflows/release_build.yml (Line: 21, Col: 14): Unexpected value '' .github/workflows/release_build.yml (Line: 22, Col: 9): Unexpected value 'go-version'
go-version: '1.22.5'
id: go
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@master
with:
version: latest
args: release --rm-dist
workdir: ./app/
env:
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}