From 59ffa425de0bf3d3f546c401176ccd47328a9db6 Mon Sep 17 00:00:00 2001 From: roran williams <126867403+roran-williams@users.noreply.github.com> Date: Sun, 11 Feb 2024 15:27:59 +0300 Subject: [PATCH] Create snake_animation.yml Create a new file named .github/workflows/snake_animation.yml in the root of your GitHub repository and add the YAML code into it. --- .github/workflows/snake_animation.yml | 34 +++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/snake_animation.yml diff --git a/.github/workflows/snake_animation.yml b/.github/workflows/snake_animation.yml new file mode 100644 index 0000000..53fc645 --- /dev/null +++ b/.github/workflows/snake_animation.yml @@ -0,0 +1,34 @@ +name: Generate snake animation + +on: + schedule: # execute every 12 hours + - cron: "* */12 * * *" + + 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/ghaction-github-pages@v3.1.0 + with: + target_branch: output + build_dir: dist + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}