From 903701c841a3f77eb30f3806a042e41165219e85 Mon Sep 17 00:00:00 2001 From: Sudhanshu Mishra Date: Tue, 11 Aug 2020 18:42:02 +0530 Subject: [PATCH] Parse JSON files input --- .github/workflows/ci.yml | 2 +- dist/index.js | 4 ++-- index.js | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa04fce..fac9a96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,6 @@ jobs: - uses: ./ id: migrations with: - files: "migrations/test.sql package.json" + files: '["migrations/test.sql", "package.json"]' - name: Echo output run: echo ${{ steps.migrations.outputs.content }} diff --git a/dist/index.js b/dist/index.js index b19a1a1..d52d59c 100644 --- a/dist/index.js +++ b/dist/index.js @@ -60,8 +60,8 @@ const core = __webpack_require__(470); const { promises: fs } = __webpack_require__(747); const main = async () => { - const filePaths = core.getInput('files').split(" "); - + const filePaths = JSON.parse(core.getInput('files')); + console.log(filePaths); var output = ""; filePaths.forEach(async(filePath) => { diff --git a/index.js b/index.js index 6ea571e..efc67aa 100644 --- a/index.js +++ b/index.js @@ -4,8 +4,8 @@ const core = require('@actions/core'); const { promises: fs } = require('fs'); const main = async () => { - const filePaths = core.getInput('files').split(" "); - + const filePaths = JSON.parse(core.getInput('files')); + console.log(filePaths); var output = ""; filePaths.forEach(async(filePath) => {