Update gif.yml #2
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: Generate demo file | |
on: push | |
jobs: | |
generate-gif: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Website to file | |
uses: PabloLec/website-to-gif@2.1.1 | |
with: | |
url: "https://slabs.struct.work/One-way_Slab" | |
save_path: "/docs/assets" | |
- name: Commit file to GH repo | |
run: | | |
git config --global user.name "PabloLec/website-to-gif" | |
git config --global user.email "action@github.com" | |
git add . | |
git commit -m 'Update file' | |
git push |