Update themes gallery #174
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: Build and deploy GH Pages | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.ref != 'refs/heads/master' | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: build | |
uses: shalzz/[email protected] | |
env: | |
BUILD_DIR: docs/ | |
BUILD_ONLY: true | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: build_and_deploy | |
uses: shalzz/[email protected] | |
env: | |
PAGES_BRANCH: gh-pages | |
BUILD_DIR: docs/ | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |