Merge pull request #1636 from kevinchappell/fix/1635-text-type-label #217
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: Install dependencies | |
| env: | |
| CI: true | |
| run: npm install | |
| - name: Build the plugin | |
| run: npm run build:all | |
| - name: Deploy Demo 🚀 https://kevinchappell.github.io/formBuilder/ | |
| if: success() | |
| uses: JamesIves/github-pages-deploy-action@v4.3.0 | |
| with: | |
| branch: gh-pages | |
| folder: demo |