├── .github └── workflows │ └── snake.yml └── README.md /.github/workflows/snake.yml: -------------------------------------------------------------------------------- 1 | name: Generate snake animation 2 | 3 | on: 4 | schedule: # execute every 12 hours 5 | - cron: "* */12 * * *" 6 | workflow_dispatch: 7 | push: 8 | branches: 9 | - master 10 | 11 | jobs: 12 | generate: 13 | permissions: 14 | contents: write 15 | runs-on: ubuntu-latest 16 | timeout-minutes: 5 17 | 18 | steps: 19 | 20 | - name: generate snake.svg 21 | uses: Platane/snk/svg-only@v3 22 | with: 23 | github_user_name: ${{ github.repository_owner }} 24 | outputs: | 25 | dist/snake.svg 26 | dist/snake-dark.svg?palette=github-dark 27 | 28 | - name: push snake.svg to the output branch 29 | uses: crazy-max/ghaction-github-pages@v3.1.0 30 | with: 31 | target_branch: output 32 | build_dir: dist 33 | env: 34 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
🎯 Clean Architecture - Writing maintainable and scalable code is an art
29 |🔁 Quality First - Thorough testing ensures reliable deployments
30 |📚 Portfolio-Driven - Let the work speak for itself
31 |🌱 Continuous Learning - Embracing new technologies and methodologies
32 |💬 Clear Communication - The bridge between great ideas and successful execution
33 |🕊️ Professional Freedom - Discipline drives successful remote work
34 |