Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rabi-siddique committed Dec 18, 2024
1 parent 5857e80 commit b85e97e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/scripts/createVault.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ const createVault = async (containerName, agoricNet, commandTimeout, userKey, wa
}
};

const containerName = process.env.INPUT_CONTAINERNAME;
const agoricNet = process.env.INPUT_AGORICNET;
const commandTimeout = process.env.INPUT_COMMANDTIMEOUT;
const userKey = process.env.INPUT_USERKEY;
const wantMinted = process.env.INPUT_WANTMINTED;
const giveCollateral = process.env.INPUT_GIVECOLLATERAL;
const containerName = process.env.containerName;
const agoricNet = process.env.agoricNet;
const commandTimeout = process.env.commandTimeout;
const userKey = process.env.userKey;
const wantMinted = process.env.wantMinted;
const giveCollateral = process.env.giveCollateral;

createVault(containerName, agoricNet, commandTimeout, userKey, wantMinted, giveCollateral);

0 comments on commit b85e97e

Please sign in to comment.