Skip to content

Commit df29585

Browse files
committed
fix
1 parent 81a8cbd commit df29585

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ jobs:
6262
node-version: 18.x
6363
- name: pnpm install, build,
6464
run: |
65-
mkdir ~/.ssh
66-
ssh-keyscan github.com >> ~/.ssh/known_hosts
6765
pnpm install
6866
env:
6967
CI: true
@@ -87,6 +85,8 @@ jobs:
8785
set -e
8886
version=$(cat package.json | jq -r '.version')
8987
TAG=v$version
88+
mkdir ~/.ssh
89+
ssh-keyscan github.com >> ~/.ssh/known_hosts
9090
git fetch --unshallow
9191
git fetch --all --tags
9292
if git rev-parse "$TAG" >/dev/null 2>&1; then

0 commit comments

Comments
 (0)