From 31356c5fa6d365ad4fe2ba564db461e895b76c4c Mon Sep 17 00:00:00 2001 From: Kevin Doran Date: Sat, 4 Jul 2026 09:42:45 -0400 Subject: [PATCH] Upload pj-skill.md as a standalone release asset The README instructs agents to fetch the skill file from releases/latest/download/pj-skill.md, which resolves top-level release assets. archives.files only embeds the file inside the tarballs, so that URL has always returned 404. release.extra_files uploads it as its own asset alongside the archives. Closes #29 --- .goreleaser.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index a9e1a88..b385b6a 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -27,6 +27,13 @@ archives: files: - pj-skill.md +release: + # Upload pj-skill.md as a standalone release asset (in addition to the copy + # inside each archive) so the documented URL works: + # https://github.com/kevdoran/projector/releases/latest/download/pj-skill.md + extra_files: + - glob: ./pj-skill.md + notarize: macos: - enabled: '{{ isEnvSet "MACOS_SIGN_P12" }}'