Merge pull request #107 from 61netpa/master #101
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: Publish Themes | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| cache: 'yarn' | |
| - run: yarn install | |
| - run: yarn check | |
| - name: Build | |
| run: yarn build | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@4.1.5 | |
| with: | |
| branch: built | |
| folder: built |