Skip to content

Init commit

Init commit #1

Workflow file for this run

---
name: Run spec tests
on:
push:
tags:
- "*"
jobs:
build:
name: Build and release
runs-on: ubuntu-latest
steps:
- name: Check out repository

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go 1.20.11
uses: actions/setup-go@v5
with:
go-version: 1.20.11
- name: Run release
uses: goreleaser/goreleaser-action@v5
if: startsWith(github.ref, 'refs/tags/')
with:
distribution: goreleaser
version: ${{ github.ref_name }}
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}