From d72e9b8521ca96c79c47aae0e401779d3cf2f40a Mon Sep 17 00:00:00 2001 From: DeMineArchiver <83916788+DeMineArchiver@users.noreply.github.com> Date: Sun, 27 Aug 2023 17:41:58 +0300 Subject: [PATCH] Action outputs Add outputs field into the action metadata file, allowing for sweet autocomplete in some code editors --- action.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/action.yml b/action.yml index 61e3f56..a871da9 100644 --- a/action.yml +++ b/action.yml @@ -29,6 +29,15 @@ inputs: description: "The version of Wrangler to use" required: false default: "2" +outputs: + id: + description: The ID of the pages deployment + url: + description: The URL of the pages deployment + alias: + description: The alias if it exists otherwise the deployment URL + environment: + description: The environment that was deployed to runs: using: "node16" main: "index.js"