diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index e8b49e8..48351dc 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -62,21 +62,16 @@ jobs: - name: Build binaries run: bun run binaries - - name: Configure npm registry auth - run: | - echo "registry=https://registry.npmjs.org" >> ~/.npmrc - echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc - cat >> ~/.bunfig.toml << EOF - [install.scopes] - "@0kmpo" = { registry = "https://registry.npmjs.org", token = "${NODE_AUTH_TOKEN}" } - EOF - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: '20' + registry-url: 'https://registry.npmjs.org' - name: Publish to npm registry - run: bun publish --access public + run: npm publish --access public env: - BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Create Gitea release and upload binaries run: |