Skip to content

chore: fix Windows' path for CI #1782

chore: fix Windows' path for CI

chore: fix Windows' path for CI #1782

Workflow file for this run

name: Build + Lint
on: push
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25.7"
- name: Setup release environment
run: |-
echo 'GITHUB_TOKEN=${{secrets.GITHUB_TOKEN}}' > .release-env
echo 'CHOCOLATEY_API_KEY=${{secrets.CHOCOLATEY_API_KEY}}' >> .release-env
- name: GoReleaser
run: make choco-cross
if: startsWith(github.ref, 'refs/tags/')
lint:
name: runner / vale
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: errata-ai/vale-action@v2.1.1
with:
files: README.md
debug: true
fail_on_error: true
reporter: github-check
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}