Skip to content

Commit

Permalink
fix: configure & deploy to pages
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmcintyre committed Apr 16, 2024
1 parent 7dcd0dc commit 72ae87c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,18 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20.6'
- name: Install dependencies
- name: Install python dependencies
run: |
python3 -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build site
run: npm install && npm run build
- name: Configure & upload
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v1
with:
path: dist
target: gh-pages
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1

0 comments on commit 72ae87c

Please sign in to comment.