From 3fadddf28dd99a080001e25cc8381cdaab34086f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Sat, 5 Oct 2019 12:56:02 +0200 Subject: [PATCH] Add action.yml --- action.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..53f139b --- /dev/null +++ b/action.yml @@ -0,0 +1,11 @@ +name: 'Setup Zig' +description: 'Setup a Zig compiler and add it to the path' +author: 'goto-bus-stop' +inputs: + version: + description: 'Version of the zig compiler to use (must be 0.3.0 or up)' + required: true + default: '0.5.0' +runs: + using: 'node12' + main: 'index.js'