Skip to content

v0.1.3

v0.1.3 #2

Workflow file for this run

name: goreleaser
on:
push:
tags:
- "v*"
permissions:
contents: write
build:

Check failure on line 11 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / goreleaser

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 11, Col: 1): Unexpected value 'build'
- main: ./cmd/jerm
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v4
with:
go-version: stable
- uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}