From 9481dff8cb8f268d5035241f4fcc663358961d73 Mon Sep 17 00:00:00 2001 From: Jon Fox Date: Wed, 1 Oct 2025 14:35:05 -0700 Subject: [PATCH] Remove duplicate release creation from CI workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ci.yml workflow was conflicting with the dedicated release.yml workflow, causing permission errors when both tried to create releases on tag pushes. Now release.yml (with GoReleaser) is the sole owner of release creation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/ci.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75985e4..76f94a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,6 @@ name: CI on: push: branches: [ main, master, 'jf-*' ] - tags: [ 'v*' ] pull_request: branches: [ main, master ] @@ -134,13 +133,4 @@ jobs: with: name: binaries path: dist/* - retention-days: 7 - - - name: Create Release - if: startsWith(github.ref, 'refs/tags/v') - uses: softprops/action-gh-release@v2 - with: - files: dist/* - draft: false - prerelease: false - generate_release_notes: true \ No newline at end of file + retention-days: 7 \ No newline at end of file