From 58b6dcc114b7f243dcf7ea75fd9bfda4543e7c8e Mon Sep 17 00:00:00 2001 From: Vio Date: Sat, 23 Jul 2022 23:35:50 +0200 Subject: [PATCH] feat: Add support for agent endpoint --- action.yml | 3 +++ dist/index.js | 6 ++++-- src/index.ts | 2 ++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 50d5d5fae..2846eae65 100644 --- a/action.yml +++ b/action.yml @@ -16,6 +16,9 @@ inputs: slug: description: 'RelativeCI project slug' required: false + endpoint: + description: 'RelativeCI ingest endpoint' + required: false includeCommitMessage: description: 'Include commit message' required: false diff --git a/dist/index.js b/dist/index.js index de8549ed9..def97a732 100644 --- a/dist/index.js +++ b/dist/index.js @@ -50450,7 +50450,7 @@ var _a = process.env, function run() { return index_awaiter(this, void 0, void 0, function () { - var token, key, slug, webpackStatsFile, artifactName, includeCommitMessage, debug, eventName, agentParams, webpackStats, err_1; + var token, key, slug, endpoint, webpackStatsFile, artifactName, includeCommitMessage, debug, eventName, agentParams, webpackStats, err_1; return index_generator(this, function (_a) { switch (_a.label) { case 0: @@ -50459,6 +50459,7 @@ function run() { token = core.getInput('token'); key = core.getInput('key'); slug = core.getInput('slug'); + endpoint = core.getInput('endpoint'); webpackStatsFile = core.getInput('webpackStatsFile'); artifactName = core.getInput('artifactName'); includeCommitMessage = core.getInput('includeCommitMessage') === 'true'; @@ -50531,7 +50532,8 @@ function run() { case 9: // Set RelativeCI service key // @TODO pass it as an argument to agent - process.env.RELATIVE_CI_KEY = key; // Enable debugging for debug input or ACTIONS_STEP_DEBUG is set + process.env.RELATIVE_CI_KEY = key; + process.env.RELATIVE_CI_ENDPOINT = endpoint; // Enable debugging for debug input or ACTIONS_STEP_DEBUG is set if (debug || ACTIONS_STEP_DEBUG) { process.env.DEBUG = 'relative-ci:agent'; diff --git a/src/index.ts b/src/index.ts index c95e9831e..39dd3a2cb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,6 +13,7 @@ async function run() { const token = core.getInput('token'); const key = core.getInput('key'); const slug = core.getInput('slug'); + const endpoint = core.getInput('endpoint'); const webpackStatsFile = core.getInput('webpackStatsFile'); const artifactName = core.getInput('artifactName'); const includeCommitMessage = core.getInput('includeCommitMessage') === 'true'; @@ -56,6 +57,7 @@ async function run() { // Set RelativeCI service key // @TODO pass it as an argument to agent process.env.RELATIVE_CI_KEY = key; + process.env.RELATIVE_CI_ENDPOINT = endpoint; // Enable debugging for debug input or ACTIONS_STEP_DEBUG is set if (debug || ACTIONS_STEP_DEBUG) {