From 9a1617cf46dd37be94dbc1f24bf07794c1d4c0c4 Mon Sep 17 00:00:00 2001 From: khai96_ Date: Sat, 9 May 2020 20:03:45 +0700 Subject: [PATCH] Rename install to install-pnpm --- dist/index.js | Bin 210346 -> 210346 bytes src/index.ts | 4 ++-- src/{install => install-pnpm}/index.ts | 0 src/{install => install-pnpm}/run.ts | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename src/{install => install-pnpm}/index.ts (100%) rename src/{install => install-pnpm}/run.ts (100%) diff --git a/dist/index.js b/dist/index.js index 016c5139311eecfe340e22adf7e76e7690ca8a43..83e7641cdce7c59997033d2b681a0ad722558ab4 100644 GIT binary patch delta 108 zcmZ4WnrGE(o()N#HYa?!#>;3rUC@C^ZgMuG@$~cYOl+HXe_G1OWNA5>@u^vRE)(PS zTqdSHF+f#;dzlorKS*HG?P0Po+s^-%>76X2AxN*vbia6}IZT$O)8E81U1YW}vjFO~ L*>1(nT%ZL2`m`qN delta 112 zcmZ4WnrGE(o()N#n2ao@3py~#P0nUCp8W4C+tvw;OBpvOeY(cWXgQhjsabn26XW(= zCZ;_xjD{eEDwAu!&So|O>eAw3zQ}B5U^-nfh)I0<-`z}{+r8qMbbFZ047OLkW_l;f PXaO|9X1f(PbAc8BSl1`o diff --git a/src/index.ts b/src/index.ts index dcfb9aa..8add39b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,11 +1,11 @@ import { setFailed } from '@actions/core' import getInputs from './inputs' import setOutputs from './outputs' -import install from './install' +import installPnpm from './install-pnpm' async function main() { const inputs = getInputs() - await install(inputs) + await installPnpm(inputs) console.log('Installation Completed!') setOutputs(inputs) } diff --git a/src/install/index.ts b/src/install-pnpm/index.ts similarity index 100% rename from src/install/index.ts rename to src/install-pnpm/index.ts diff --git a/src/install/run.ts b/src/install-pnpm/run.ts similarity index 100% rename from src/install/run.ts rename to src/install-pnpm/run.ts