Publish 0.8.0 (#239) #97
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 apps to GH Pages | |
concurrency: ci-${{ github.ref }} | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'demos/**' | |
permissions: | |
contents: write | |
defaults: | |
run: | |
working-directory: demos | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository 🛎️ | |
uses: actions/checkout@v3 | |
- name: Install and build 🔧 | |
run: npm run build:gh | |
- name: Run tests ✅ | |
run: npm run test | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: demos/build | |
branch: gh-pages | |
clean-exclude: pr-preview |