Added documentation icons #38
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: Run build scripts & publish to GitHub Pages | |
on: | |
push: | |
branches: | |
- production | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v1 | |
- name: Fix SVG files | |
run: python3 ./scripts/fix-svgs.py | |
- name: Do not deploy scripts | |
run: rm -rf ./scripts | |
- name: Publish generated content to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: . |