|
const shiras = {
location: "Sri Lanka π±π°",
education: "Software Engineering @ NIBM",
role: "Full-Stack Developer",
learning: ["Python", "React", "Spring Boot"],
askMeAbout: ["Web Dev", "Mobile Dev", "OOP"],
funFact: "I debug with console.log() π€«"
};
|
π Setup Instructions
Create .github/workflows/snake.yml:
name: Generate Snake
on:
schedule:
- cron: "0 */12 * * *"
workflow_dispatch:
push:
branches:
- main
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 }}





