From b15b65d3e5d6a685f401d76a92b2167f438d6946 Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Mon, 30 Oct 2023 15:04:12 -0400 Subject: [PATCH] Misc tweaks --- src/internal/deployment.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/internal/deployment.js b/src/internal/deployment.js index fd342ea..b4b15ed 100644 --- a/src/internal/deployment.js +++ b/src/internal/deployment.js @@ -46,8 +46,8 @@ class Deployment { this.startTime = null } - // Ask the runtime for and artifact id and deploy to GitHub Pages - // by creating a deployment with that artifact + // Call GitHub api to fetch artifacts matching the provided name and deploy to GitHub Pages + // by creating a deployment with that artifact id async create(idToken) { if (Number(core.getInput('timeout')) > MAX_TIMEOUT) { core.warning( @@ -93,6 +93,7 @@ class Deployment { } core.info(`Created deployment for ${this.buildVersion}, ID: ${this.deploymentInfo?.id}`) + core.debug(JSON.stringify(deployment)) return deployment