Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit 0022b3b

Browse files
author
github-actions
committed
update dist
1 parent 9873dbf commit 0022b3b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dist/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13636,10 +13636,11 @@ const owner = "koki-develop";
1363613636
const repo = "qiita-cli";
1363713637

1363813638
/**
13639+
* @param {String} version
1363913640
* @param {String} path
1364013641
* @returns {Promise<String>}
1364113642
*/
13642-
const _install = async (path) => {
13643+
const _install = async (version, path) => {
1364313644
core.info("Installing...");
1364413645

1364513646
const extractedPath = await (async () => {
@@ -13740,7 +13741,7 @@ const _download = async (version) => {
1374013741
(async () => {
1374113742
const version = await _getVersion(core.getInput("version"));
1374213743
const cliPath = await _download(version);
13743-
await _install(cliPath);
13744+
await _install(version, cliPath);
1374413745
})().catch((err) => {
1374513746
core.setFailed(err.message);
1374613747
});

0 commit comments

Comments
 (0)