diff --git a/.changeset/long-drinks-grin.md b/.changeset/long-drinks-grin.md new file mode 100644 index 0000000..247ee1c --- /dev/null +++ b/.changeset/long-drinks-grin.md @@ -0,0 +1,5 @@ +--- +"@taskade/temporal-parser": patch +--- + +build(ci): Fix GitHub Packages publish workflow to use correct registry. Previously, the GitHub Packages publish step was attempting to publish to npm registry instead of GitHub Packages registry. This adds the explicit `--registry` flag to ensure packages are published to the correct location. diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8dbd2a4..aaa57c4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -64,6 +64,6 @@ jobs: - name: Publish to GitHub Packages if: steps.changesets.outputs.published == 'true' - run: npm publish + run: npm publish --registry=https://npm.pkg.github.com env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}