Update requirements.txt #5
This file contains hidden or 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/[email protected] | |
| with: | |
| url: "https://slabs.struct.work/One-way_Slab" | |
| - name: Commit file to GH repo | |
| run: | | |
| git config --global user.name "PabloLec/website-to-gif" | |
| git config --global user.email "[email protected]" | |
| git add . | |
| git commit -m 'Update file' | |
| git push |