Fix(web,web-twig): Fix Button
flickering during spinner animation i…
#361
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 | |
paths: | |
- packages/web/** | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Install dependencies | |
uses: bahmutov/[email protected] | |
with: | |
useRollingCache: true | |
- name: Build examples | |
run: | | |
cd packages/web && yarn examples:build:gh | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
folder: packages/web/build | |
branch: gh-pages | |
target-folder: docs |