-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (32 loc) · 865 Bytes
/
snake.yml
File metadata and controls
38 lines (32 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Generate Snake Animation
on:
# Run automatically every 24 hours
schedule:
- cron: "0 12 * * *"
# Allows to manually run the job at any time
workflow_dispatch:
# Run on every push on the main branch
push:
branches:
- main
jobs:
generate:
permissions:
contents: write
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: generate github-snake.svg
uses: Platane/snk/svg-only@v3
with:
github_user_name: copyleftdev
outputs: |
dist/github-snake.svg
dist/github-snake-dark.svg?palette=github-dark
- name: push snake files 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 }}