Generate snake animation #248
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 snake animation | |
| on: | |
| schedule: # execute every 12 hours | |
| - cron: "0 */12 * * *" | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| generate: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: generate snake.svg | |
| uses: Platane/snk/svg-only@v3 | |
| with: | |
| github_user_name: ${{ github.repository_owner }} | |
| outputs: snake.svg?palette=github-dark | |
| - name: Create dist directory | |
| run: mkdir -p dist | |
| - name: Move snake.svg to dist directory | |
| run: mv snake.svg dist/ | |
| - name: push snake.svg to the output branch | |
| uses: crazy-max/ghaction-github-pages@v3.1.0 | |
| with: | |
| target_branch: output | |
| build_dir: dist | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |