Bump quantecon/actions/publish-gh-pages to v0.8.0#957
Merged
Conversation
Interface is unchanged v0.6.0 -> v0.8.0; the v0.8.0 deltas (off-tag skip, fail-fast on missing token, release tarball to $RUNNER_TEMP) don't alter this tag-triggered publish path. Part of QuantEcon/lectures#11. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the GitHub Pages deployment workflow to use the current quantecon/actions/publish-gh-pages release, removing version drift with other workflows in this repo (notably preview-netlify in ci.yml).
Changes:
- Bumped
quantecon/actions/publish-gh-pagesfromv0.6.0tov0.8.0in the tag-triggered publish workflow. - Kept the workflow’s inputs/call site unchanged while picking up upstream robustness fixes in the action implementation.
📖 Netlify Preview Ready!Preview URL: https://pr-957--sunny-cactus-210e3e.netlify.app Commit: Build Info
|
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.
Bumps
quantecon/actions/publish-gh-pagesfromv0.6.0tov0.8.0(current release), aligning it withpreview-netlify, which is already onv0.8.0inci.yml— this repo had drifted into an internally inconsistent mix. Part of the cross-repo audit in QuantEcon/lectures#11.Why
v0.6.0is two minor releases behind.v0.8.0brings robustness fixes topublish-gh-pages: the release tarball is written to$RUNNER_TEMPso it can't recurse into itself, and release-asset creation skips cleanly off-tag and fails fast on a missing token.Impact — drop-in, no behavioral change here
publish-gh-pagesinput interface is byte-for-byte identical between v0.6.0 and v0.8.0 — no new required inputs, nothing renamed.github-tokenand runs only onpush: tags: 'publish*', so the new off-tag / missing-token guards are no-ops.ci.yml/cache.ymlchanges are needed — only the tag-triggered deploy path is touched.The one real-world check is the next
publish*tag on this repo after merge.References: v0.8.0 release · v0.6.0…v0.8.0 diff