Skip to content

Commit

Permalink
correction
Browse files Browse the repository at this point in the history
  • Loading branch information
JodieAddis committed Feb 17, 2024
1 parent 9b63181 commit 93519d4
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,36 +43,36 @@ jobs:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}

steps:
- uses: actions/checkout@v4
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"

- run: npm i
- run: npm i

- name: Configure GH pages
uses: actions/configure-pages@v3
- name: Configure GH pages
uses: actions/configure-pages@v3

- name: Tailwind
run: npm run design
- name: Tailwind
run: npm run design

- name: Compile TS to JS
run: npm run compile
- name: Compile TS to JS
run: npm run compile

- name: Copy index.html in dist folder
run: cp index.html ./dist/
- name: Copy index.html in dist folder
run: cp index.html ./dist/

- name: Copy font to dist
run: cp -r ./public/font ./dist/public/font
- name: Copy font to dist
run: cp -r ./public/font ./dist/public/font

- name: Uploading Artifacts
uses: actions/uploard-pages-artifact@v2
with:
path: ./dist/
- name: Uploading Artifacts
uses: actions/uploard-pages-artifact@v2
with:
path: ./dist/

- name: Deploy to GH pages
uses: actions/deploy-pages@v1
id: deployment
- name: Deploy to GH pages
uses: actions/deploy-pages@v1
id: deployment

0 comments on commit 93519d4

Please sign in to comment.