Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx committed Nov 26, 2024
1 parent 81a8cbd commit df29585
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ jobs:
node-version: 18.x
- name: pnpm install, build,
run: |
mkdir ~/.ssh
ssh-keyscan github.com >> ~/.ssh/known_hosts
pnpm install
env:
CI: true
Expand All @@ -87,6 +85,8 @@ jobs:
set -e
version=$(cat package.json | jq -r '.version')
TAG=v$version
mkdir ~/.ssh
ssh-keyscan github.com >> ~/.ssh/known_hosts
git fetch --unshallow
git fetch --all --tags
if git rev-parse "$TAG" >/dev/null 2>&1; then
Expand Down

0 comments on commit df29585

Please sign in to comment.