Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,8 @@ jobs:
package_spec="${package_name}@${package_version}"

verify_registry_artifact() {
set +e
registry_integrity="$(npm view "${package_spec}" dist.integrity 2>registry-error.log)"
view_status=$?
set -e
if [ "${view_status}" -ne 0 ]; then
if grep -q "E404" registry-error.log; then
return 2
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
- Add the public repository governance baseline, pinned CodeQL analysis,
package tarball/import validation, and protected tag-driven npm trusted
publishing with provenance and changelog-derived GitHub releases.
- Let tag-driven publishing continue from an expected registry miss into npm
trusted publishing instead of exiting before the publish attempt.

## 0.4.5 - 2026-07-20

Expand Down
Loading