Skip to content

Generate snake animation #2770

Generate snake animation

Generate snake animation #2770

Workflow file for this run

name: Generate snake animation
on:
schedule: # execute every 12 hours
- cron: '* */12 * * *'
workflow_dispatch:
push:
branches:
- master
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: generate snake.svg
uses: Platane/snk/svg-only@v3
with:
github_user_name: ${{ github.repository_owner }}
outputs: |
dist/github-snake.svg
dist/github-snake-dark.svg?palette=github-dark
env:
GITHUB_TOKEN: ${{ secrets.README_SNAKE_TOKEN }}
- name: push snake.svg to the output branch
uses: crazy-max/[email protected]
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.README_SNAKE_TOKEN }}