Skip to content

Commit

Permalink
yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
NhanAZ committed Jun 26, 2024
1 parent ac2c3f5 commit 3999ec2
Show file tree
Hide file tree
Showing 3 changed files with 8,365 additions and 14,543 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/deploy-to-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,24 +34,22 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
# πŸ‘‡ Build steps
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
cache: yarn
- name: Install dependencies
run: npm ci --ignore-scripts --no-audit --prefer-offline
run: yarn install --frozen-lockfile --non-interactive
- name: Build
run: npx build
# πŸ‘† Build steps
run: yarn build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# πŸ‘‡ Specify build output path (Upload entire repository)
# # πŸ‘‡ Specify build output path (Upload entire repository)
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v2
Loading

0 comments on commit 3999ec2

Please sign in to comment.