We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11cd7cd commit 147b672Copy full SHA for 147b672
.github/workflows/npm-publish.yml
@@ -11,14 +11,6 @@ on:
11
- "komal/npm-publish"
12
13
jobs:
14
- build:
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: actions/checkout@v3
18
- - uses: actions/setup-node@v3
19
- with:
20
- node-version: ^20.4.0
21
- - run: yarn install --ignore-engines --frozen-lockfile
22
publish-npm:
23
needs: build
24
runs-on: ubuntu-latest
@@ -28,6 +20,9 @@ jobs:
28
with:
29
node-version: ^20.4.0
30
registry-url: https://registry.npmjs.org/
31
- - run: npm publish
+ - name: Yarn install
+ run: yarn install --ignore-engines --frozen-lockfile
25
+ - name: Publish npm package
26
+ run: npm publish
32
27
env:
33
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
0 commit comments