From 9a8ee6a7140d4821ff857e31edf4f8d683cd7293 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 6 Jan 2025 12:22:36 +0200 Subject: [PATCH] chore(build): deploy to npm --- .github/workflows/release.yml | 27 ++++++++++++++++----------- package.json | 6 ++---- 2 files changed, 18 insertions(+), 15 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f6ffd2477..a2c61a1cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,21 +1,26 @@ name: Release on: push: - tags: v* + tags: + - 'v*' jobs: - publish-github-registry: + publish-package: + name: Publish package runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up node & dependencies + - name: Set up Node uses: actions/setup-node@v4 with: - node-version: 20 - registry-url: https://npm.pkg.github.com/ - cache: "npm" - - run: yarn install - - run: yarn publish + node-version: 22 + registry-url: 'https://registry.npmjs.org' + always-auth: true + - run: | + corepack enable && + corepack install + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Publish package + run: yarn publish --access public env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} - permissions: - packages: write + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} diff --git a/package.json b/package.json index 4d4cca649..832a0139a 100644 --- a/package.json +++ b/package.json @@ -12,9 +12,6 @@ "katex" ], "main": "src/index.ts", - "publishConfig": { - "registry": "https://npm.pkg.github.com" - }, "dependencies": { "ckeditor5": "41.4.2" }, @@ -104,5 +101,6 @@ "hooks": { "pre-commit": "lint-staged" } - } + }, + "packageManager": "yarn@1.22.22" }