Skip to content

Commit

Permalink
fix: config deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommy Alhamra committed Dec 5, 2024
1 parent b3dbcfa commit ce058ca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/github-actions-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,27 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v4
uses: actions/setup-node@v3
with:
node-version: 16

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload dist folder
path: './dist'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit ce058ca

Please sign in to comment.