From c6b2e3a539f221df387b04b1e3caf95931edbe06 Mon Sep 17 00:00:00 2001 From: Animesh Date: Tue, 17 Oct 2023 15:54:03 +0530 Subject: [PATCH] feat: new framwork support added Signed-off-by: Animesh --- action.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/action.yml b/action.yml index 51113f7..417ad0f 100644 --- a/action.yml +++ b/action.yml @@ -50,17 +50,13 @@ runs: cat ${GITHUB_WORKSPACE}/${WORKDIR}/testSets.yml cat ${GITHUB_WORKSPACE}/${WORKDIR}/testReports.yml + echo "test-report=$(cat ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-1.yml)" >> $GITHUB_OUTPUT + echo "success=$(cat ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-1.yml)" >> $GITHUB_OUTPUT + echo "failed=$(cat ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-1.yml)" >> $GITHUB_OUTPUT + shell: sh env: WORKDIR: ${{ inputs.working-directory }} DELAY: ${{ inputs.delay }} COMMAND : ${{ inputs.command }} KEPLOY_PATH: ${{inputs.keploy-path}} - - name: Set outputs - run: | - echo "::set-output name=test-report::$(cat ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-1.yml)" - echo "::set-output name=success::$(cat ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-1.yml)" - echo "::set-output name=failed::$(cat ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-1.yml)" - shell: bash - env: - WORKDIR: ${{ inputs.working-directory }}