Skip to content

Commit

Permalink
Create snake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
codegeekery authored Jul 19, 2023
1 parent a247960 commit 9a80ad4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/snake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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@v2
with:
github_user_name: ${{ github.repository_owner }}
outputs: dist/snake.svg


- 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 9a80ad4

Please sign in to comment.