Reimplement basic keyboard handling #3
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
# This workflow deploys the repository to GitHub Pages when master branch is updated. | |
name: Deploy to GitHub Pages | |
on: | |
push: | |
branches: [master] | |
permissions: | |
pages: write | |
id-token: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm install | |
- run: npm run build | |
- uses: actions/upload-pages-artifact@v1 | |
with: | |
path: dist | |
- uses: actions/deploy-pages@v2 |