diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml new file mode 100644 index 000000000..7bf99e365 --- /dev/null +++ b/.github/workflows/npm.yml @@ -0,0 +1,20 @@ +name: Release latest version on npm +on: + release: + types: [released] + +jobs: + release_to_npm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: '18.x' + registry-url: 'https://registry.npmjs.org' + + - name: Release to npm + run: yarn npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.release-it.json b/.release-it.json index 1a9d3c58a..ad7244b50 100644 --- a/.release-it.json +++ b/.release-it.json @@ -4,7 +4,7 @@ "commitMessage": "chore: release v${version}" }, "npm": { - "publish": true + "publish": false }, "github": { "release": true,