Skip to content

Commit 0a9bcfa

Browse files
committed
fix(ci): fix go.work generation — heredoc indentation was breaking module resolution
1 parent 4c9d001 commit 0a9bcfa

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

.github/actions/setup-deps/action.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,4 @@ runs:
3939
- name: Create workspace
4040
shell: bash
4141
run: |
42-
cat > go.work << 'EOF'
43-
go 1.26.1
44-
use .
45-
replace (
46-
github.com/GrayCodeAI/eyrie => ../eyrie
47-
github.com/GrayCodeAI/tok => ../tok
48-
github.com/GrayCodeAI/yaad => ../yaad
49-
github.com/GrayCodeAI/inspect => ../inspect
50-
github.com/GrayCodeAI/sight => ../sight
51-
)
52-
EOF
42+
printf 'go 1.26.1\n\nuse .\n\nreplace (\n\tgithub.com/GrayCodeAI/eyrie => ../eyrie\n\tgithub.com/GrayCodeAI/tok => ../tok\n\tgithub.com/GrayCodeAI/yaad => ../yaad\n\tgithub.com/GrayCodeAI/inspect => ../inspect\n\tgithub.com/GrayCodeAI/sight => ../sight\n)\n' > go.work

0 commit comments

Comments
 (0)