Greatly improved responsiveness for smaller screens #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to github pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
gh-pages-deploy: | |
name: Deploying to gh-pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node.js for use with actions | |
uses: actions/setup-node@v3 | |
with: | |
version: 12.x | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- name: Clean install dependencies | |
run: npm ci | |
- name: Run deploy script | |
run: | | |
git config user.name "Eddie" && git config user.email "empburke@outlook.com" | |
npm run gh-pages-deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |