Skip to content

Commit

Permalink
fix(actions): 👷 Fix Github Actions to use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
2h3ph3rd committed Nov 14, 2024
1 parent 0676bb0 commit 47bcc40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
cache: npm

- name: Install dependencies
run: yarn
run: npm
- name: Build website
run: yarn build
run: npm build

# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
Expand Down

0 comments on commit 47bcc40

Please sign in to comment.