Merge pull request #62 from camptocamp/fix-typings-build #70
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: | |
deploy: | |
name: Build app & deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node & NPM | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- name: Install lib dependencies | |
run: npm ci | |
- name: Install app dependencies | |
working-directory: app | |
run: npm ci | |
- name: Build library output | |
run: npm run build | |
- name: Build library docs | |
working-directory: app | |
run: npm run docs | |
- name: Build demo | |
working-directory: app | |
run: npm run build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./app/dist | |
keep_files: false | |
exclude_assets: '*.js.map' |