Skip to content

Commit 75e92e3

Browse files
committed
fix publish action
1 parent eea86a8 commit 75e92e3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
- run: corepack enable
1515
- uses: actions/setup-node@v6
1616
with:
17-
cache: yarn
17+
cache: npm
1818
node-version: '20.x'
1919
registry-url: 'https://registry.npmjs.org'
2020
scope: '@airframes'
21-
- run: yarn install --immutable
22-
- run: yarn build
23-
- run: yarn npm publish
21+
- run: npm ci
22+
- run: npm build
23+
- run: npm publish
2424
env:
2525
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)