Skip to content

Commit

Permalink
fixed issue
Browse files Browse the repository at this point in the history
  • Loading branch information
appujet committed Sep 21, 2024
1 parent 6744797 commit f57c065
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,18 @@ jobs:
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Install, build, and upload your site
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: yarn install --no-frozen-lockfile

- name: Build
run: yarn run build

- name: Deploy to GitHub Pages
uses: withastro/action@v3
with:
path: ./docs
Expand Down

0 comments on commit f57c065

Please sign in to comment.