Skip to content

Commit e80fabc

Browse files
authored
fix deploy (#939)
remove yarn dependency
1 parent aff2de5 commit e80fabc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
- name: Setup Node
3333
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7
3434
with:
35-
cache: yarn
3635
node-version: 18
3736
registry-url: "https://registry.npmjs.org"
3837

@@ -43,7 +42,6 @@ jobs:
4342

4443
- name: Install dependencies
4544
run: |
46-
yarn install --immutable --immutable-cache
4745
git submodule update --init --recursive
4846
4947
- name: Compile
@@ -54,4 +52,4 @@ jobs:
5452
NPM_CONFIG_USERCONFIG: /dev/null
5553
NODE_AUTH_TOKEN: ${{ env.NPM_TOKEN }}
5654
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
57-
run: echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > ~/.npmrc && yarn publish
55+
run: echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > ~/.npmrc && npm publish

0 commit comments

Comments
 (0)