From 9a80ad45e1aa5c64e41a03160e0d08934848082e Mon Sep 17 00:00:00 2001 From: Juan Gouveia <85375414+jcfgDEV@users.noreply.github.com> Date: Wed, 19 Jul 2023 18:05:10 +0100 Subject: [PATCH] Create snake.yml --- .github/workflows/snake.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/snake.yml diff --git a/.github/workflows/snake.yml b/.github/workflows/snake.yml new file mode 100644 index 0000000..288dc6c --- /dev/null +++ b/.github/workflows/snake.yml @@ -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/ghaction-github-pages@v2.6.0 + with: + target_branch: output + build_dir: dist + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}