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