Skip to content

v0.7.1

Choose a tag to compare

@github-actions github-actions released this 18 May 15:54
Immutable release. Only release title and notes can be modified.
4c2be42

Fixed

  • Publish pipeline targets GitHub Packages and actually works. The publish workflow had three pre-existing bugs preventing publication on every release since v0.4.0: (1) called npm run type-check but the script is named typecheck; (2) targeted https://registry.npmjs.org instead of GitHub Packages; (3) used NPM_TOKEN secret (never provisioned) instead of the auto-issued GITHUB_TOKEN. Workflow now points at https://npm.pkg.github.com, authenticates with GITHUB_TOKEN, declares packages: write permission, and uses the correct script name. workflow_dispatch trigger added so future republish runs can fire without a master push.
  • package.json configured for publishing. Name scoped to @studnicky/squashage (GitHub Packages requires scoped names). private: true removed. New publishConfig.registry: https://npm.pkg.github.com, publishConfig.access: public, repository, bugs, homepage, and files fields added. files limits the publish tarball to dist/, README.md, LICENSE, CHANGELOG.md. Consumers import as @studnicky/squashage from GitHub Packages registry.