diff options
| author | zyoshoka <107108195+zyoshoka@users.noreply.github.com> | 2025-06-05 19:21:15 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-05 19:21:15 +0900 |
| commit | f37a1e84bd78a58f071d89b9a008645bb9b54be7 (patch) | |
| tree | 2e9c3ba787a72390b38dc5d6db663856e4cac42c /.github/workflows | |
| parent | add note (diff) | |
| download | misskey-f37a1e84bd78a58f071d89b9a008645bb9b54be7.tar.gz misskey-f37a1e84bd78a58f071d89b9a008645bb9b54be7.tar.bz2 misskey-f37a1e84bd78a58f071d89b9a008645bb9b54be7.zip | |
chore: fix failure to publish misskey-js to npm registry (#16169)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/on-release-created.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/on-release-created.yml b/.github/workflows/on-release-created.yml index c156de1a8b..7787d6055b 100644 --- a/.github/workflows/on-release-created.yml +++ b/.github/workflows/on-release-created.yml @@ -26,6 +26,8 @@ jobs: with: node-version-file: '.node-version' cache: 'pnpm' + # see https://docs.github.com/actions/use-cases-and-examples/publishing-packages/publishing-nodejs-packages#publishing-packages-to-the-npm-registry + registry-url: 'https://registry.npmjs.org' - name: Publish package run: | pnpm i --frozen-lockfile |