From e72d401241e44aec7968f3e5404c8baa3f099472 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Sun, 6 Sep 2026 23:56:00 -0400 Subject: [PATCH] Fixing a couple small errors in the Woodpecker CI build --- .woodpecker.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index c15c2bc..dba905e 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -5,11 +5,10 @@ when: steps: - name: test-build - image: tinygo/tinygo:latest + image: tinygo/tinygo:0.42.0 commands: - # Verify TinyGo compiler version - - tinygo version - + # Fix dubious ownership issues because you can't disable it with tinygo + - git config --global --add safe.directory "$PWD" # Ensure modules are resolved and tidy - go mod download - go mod verify