fix: drop [skip ci] from publish commit - #11
Merged
Conversation
Netlify honours [skip ci] and skipped the deploy, so chart 2.2.1 was committed to main but never served — /charts/authorizer-2.2.1.tgz returned 404 while Chart.yaml on the site already read 2.2.1. Loop safety does not need it: GITHUB_TOKEN pushes do not trigger workflows, and the already-published guard makes a re-run a no-op.
This was referenced Aug 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #9. The publish workflow ran correctly on the #10 merge — packaged
authorizer-2.2.1.tgz, reindexed, committed and pushedfa70def..5553687. But the chart was still 404 on the site.Cause: the commit message carried
[skip ci], and Netlify honours it. The artifacts reachedmainbut no deploy ran, so the site kept serving the previous build:https://helm-charts.authorizer.dev/Chart.yaml→version: 2.2.1(deployed by the fix: pull helm test image from quay, not docker hub #10 merge)https://helm-charts.authorizer.dev/charts/authorizer-2.2.1.tgz→ 404 (published by the skipped commit)charts/authorizer-2.2.1.tgzpresent onmain, 16425 bytes[skip ci]was never needed for loop safety: pushes made withGITHUB_TOKENdo not trigger workflow runs, and theif [ -f "charts/authorizer-${version}.tgz" ]guard makes any re-run a no-op.Merging this also deploys the already-committed 2.2.1 tarball.