Skip to content

Commit

Permalink
Create snake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahdi-Hazrati authored Apr 19, 2024
1 parent 3050d6f commit b6f8992
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/snake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Generate snake animation

on:
schedule: # execute every 24 hours
- cron: "* */24 * * *"

workflow_dispatch:

push:
branches:
- master

jobs:
generate:
permissions:
contents: write
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- name: generate snake.svg
uses: Platane/snk/svg-only@v3
with:
github_user_name: ${{ github.repository_owner }}
outputs: dist/snake.svg?palette=github-dark


- name: push snake.svg to the output branch
uses: crazy-max/[email protected]
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b6f8992

Please sign in to comment.