Skip to content

Commit

Permalink
fix: ci deploy error
Browse files Browse the repository at this point in the history
  • Loading branch information
saseungmin committed Dec 13, 2023
1 parent ec430a3 commit 9e64436
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Test Build
run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
yarn install --immutable
elif [ -e package-lock.json ]; then
npm ci
else
Expand All @@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '16.14.2'
node-version: '18.17.0'
- uses: webfactory/ssh-agent@v0.5.0
with:
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }}
Expand All @@ -56,7 +56,7 @@ jobs:
git config --global user.email "actions@github.com"
git config --global user.name "gh-actions"
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
yarn install --immutable
elif [ -e package-lock.json ]; then
npm ci
else
Expand Down

0 comments on commit 9e64436

Please sign in to comment.