From 5aed62f948e81205bff376cbdbdee5efd1da015e Mon Sep 17 00:00:00 2001 From: Paul Wijhenke Date: Wed, 10 Jul 2024 20:26:03 +0200 Subject: [PATCH] 0.0.10: fix publish workflow --- .github/workflows/npm_publish.yml | 6 ++++-- README.md | 1 - package.json | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/npm_publish.yml b/.github/workflows/npm_publish.yml index 122a089..93a2170 100644 --- a/.github/workflows/npm_publish.yml +++ b/.github/workflows/npm_publish.yml @@ -8,10 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: setup pnpm + uses: pnpm/action-setup@v4 - uses: actions/setup-node@v4 with: - node-version: '20.x' - registry-url: 'https://registry.npmjs.org' + node-version: "20.x" + registry-url: "https://registry.npmjs.org" - run: pnpm install --frozen-lockfile - run: npm publish --access public env: diff --git a/README.md b/README.md index f1ffcf4..7b961ac 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,6 @@ This will create the following configuration files: - .prettierignore - .editorconfig - ### Create scripts in package.json: ``` diff --git a/package.json b/package.json index 47e2a71..f56c30e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wescfg", - "version": "0.0.9", + "version": "0.0.10", "description": "Whyhankee's ESlint/Prettier config", "main": "src/index.mjs", "type": "module",