Skip to content

Commit

Permalink
release: v0.0c
Browse files Browse the repository at this point in the history
  • Loading branch information
Nandan-unni committed Mar 17, 2024
1 parent cec69df commit 8fa52de
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: deploy-prod-to-github-pages
on:
# Runs on pushes targeting the default branch
push:
branches: ['prod']
branches: ["prod"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -17,7 +17,7 @@ permissions:

# Allow one concurrent deployment
concurrency:
group: 'pages'
group: "pages"
cancel-in-progress: true

jobs:
Expand All @@ -34,18 +34,18 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache: "yarn"
- name: Install dependencies
run: npm ci
run: yarn install
- name: Build
run: npm run build
run: yarn 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'
path: "./dist"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 8fa52de

Please sign in to comment.