Fix templates #6
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: Update preview css | |
on: | |
push: | |
paths: | |
- docs/assets/custom.css | |
jobs: | |
update-preview: | |
name: Update preview css | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Copy modified assets to each directory | |
run: ./update_preview_css.sh | |
- name: Add, Commit & Push | |
uses: EndBug/add-and-commit@v7 | |
with: | |
add: "src/G*" | |
message: "Automatic: Update preview css" |