I want to show this cute snake in my Github.
Referenced this site and wrote this in [MY_GITHUB_USERNAME]/.github/workflows/main.yml using base branch 'main'.
name: Generate Snake
on:
schedule:
# every 6 hours
- cron: "0 */6 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Platane/snk@master
id: snake-gif
with:
github_user_name: ${{ secrets.USERNAME }}
# these next 2 lines generate the files on a branch called "output". This keeps the main branch from cluttering up.
gif_out_path: dist/github-contribution-grid-snake.gif
svg_out_path: dist/github-contribution-grid-snake.svg
- run: git status
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main
force: true
- uses: crazy-max/[email protected]
with:
# the output branch we mentioned above
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Build is success, then switch 'output' branch and when click github-contribution-grid-snake.gif, it shows weird.
What's wrong and How can i do?
reference a lot of other blogs and try..
I recommend following the official instructions from the snk github repository because other sources on the internet can be outdated. You can also find sample workflows in their
.github
folder.Here is correct workflow file which I tested myself. It uses v3 of snk instead of v2 like you were using. Place it in the
.github/workflows
folder on your main branch:The files will be generated on the
snake-output
branch. My gif for example looks like this: