From 928bd3d6a9ecd3a7ffbac33e6a382dae3667d566 Mon Sep 17 00:00:00 2001 From: yayuyokitano <69117606+yayuyokitano@users.noreply.github.com> Date: Fri, 31 Mar 2023 03:45:25 +0800 Subject: [PATCH] Define action details --- action.yml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 345e2f4..3563814 100644 --- a/action.yml +++ b/action.yml @@ -1,11 +1,21 @@ -name: 'Your name here' -description: 'Provide a description here' -author: 'Your name or organization here' +name: '@yayuyokitano/firefox-addon' +description: 'Github action to upload firefox addon.' +author: 'yayuyokitano' inputs: - milliseconds: # change this + guid: required: true - description: 'input description here' - default: 'default value if applicable' + description: 'uuid of extension to update' + xpi: + required: true + description: 'path to xpi file' + api-key: + required: true + description: 'api key for AMO' + api-secret: + required: true + description: 'api secret for AMO' + src: + description: 'path to src zip file for verification. To be used if your extension uses minification, or other build steps that make it difficult to read the code of the xpi.' runs: using: 'node16' main: 'dist/index.js'