Using SSH_AUTH_SOCK (ssh agent forwarding) to pull upm private repos (#124)

* using SSH_AUTH_SOCK (ssh agent forwarding) to pull upm private repos

* sshAgent as input parameter

* yarn run prettier --write "src/**/*.{js,ts}"

* yarn run lint --fix && yarn build

* reverted results-meta.ts (changed because ran prettier --check "src/**/*.js" without && eslint src)

* removed RUN apt-get update && apt-get install -y openssh-client. This change needs to be done upstream. See game-ci/docker#117
This commit is contained in:
ivan-hernandez-scopely
2021-05-28 23:55:58 +02:00
committed by GitHub
parent 5eca106c01
commit 19661e2da7
5 changed files with 14 additions and 3 deletions

View File

@@ -22,6 +22,7 @@ class Input {
const rawArtifactsPath = getInput('artifactsPath') || 'artifacts';
const rawUseHostNetwork = getInput('useHostNetwork') || 'false';
const customParameters = getInput('customParameters') || '';
const sshAgent = getInput('sshAgent') || '';
const githubToken = getInput('githubToken') || '';
const checkName = getInput('checkName') || 'Test Results';
@@ -58,6 +59,7 @@ class Input {
artifactsPath,
useHostNetwork,
customParameters,
sshAgent,
githubToken,
checkName,
};