This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
fix: Apply old data format migration #71
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 demo app on GitHub pages | |
on: | |
push: | |
branches: [master] | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: demo/src | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use NodeJS ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: Set git user | |
run: | | |
git config --global user.email "romain-thd+github@protonmail.com" | |
git config --global user.name "RomainTHD" | |
- name: Install dependencies | |
run: npm ci | |
- name: Run deployment script | |
run: npm run deploy:gh-pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |