Skip to content

try setting wd

try setting wd #7

Workflow file for this run

name: goreleaser
on:
pull_request:
push:
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
container:
image: ubuntu:24.04
steps:
- name: Install dependencies
run: |
apt update
apt install -y libgtk-4-dev libgtksourceview-5-dev libadwaita-1-dev git sudo golang-go
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
working-directory: $GITHUB_WORKSPACE

Check failure on line 28 in .github/workflows/goreleaser.yaml

View workflow run for this annotation

GitHub Actions / goreleaser

Invalid workflow file

The workflow is not valid. .github/workflows/goreleaser.yaml (Line: 28, Col: 9): Unexpected value 'working-directory'
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}