This commit is contained in:
platane
2022-03-24 10:35:10 +01:00
parent b7298f7ff7
commit 1529e8e752
7 changed files with 164 additions and 48 deletions

10
svg-only/README.md Normal file
View File

@@ -0,0 +1,10 @@
# svg-only
Another action running purely on js (without Docker).
As a drawback, it can not generate gif image.
## Build process
file is built and push on release, by the release action.

20
svg-only/action.yml Normal file
View File

@@ -0,0 +1,20 @@
name: "generate-snake-game-from-github-contribution-grid"
description: "Generates a snake game from a github user contributions grid. Output the animation as svg"
author: "platane"
runs:
using: node16
main: index.js
inputs:
github_user_name:
description: "github user name"
required: true
svg_out_path:
description: "path of the generated svg file. If left empty, the svg file will not be generated."
required: false
default: null
outputs:
svg_out_path:
description: "path of the generated svg"