From 553b78516adaaeb1bc7823910afe8385d9527aa1 Mon Sep 17 00:00:00 2001 From: Ivan Kuznetsov Date: Fri, 15 Mar 2024 14:16:11 +0200 Subject: [PATCH] fix --- .github/actions/build-n-upload-action/entrypoint.sh | 4 +++- .github/workflows/build.yml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-n-upload-action/entrypoint.sh b/.github/actions/build-n-upload-action/entrypoint.sh index 5ab76e2..7703591 100755 --- a/.github/actions/build-n-upload-action/entrypoint.sh +++ b/.github/actions/build-n-upload-action/entrypoint.sh @@ -7,6 +7,8 @@ echo "pwd=$GITHUB_WORKSPACE" >> $GITHUB_OUTPUT cd $GITHUB_WORKSPACE -echo "ls=$(ls)" >> $GITHUB_OUTPUT +ls -a + +# echo "ls=$(ls)" >> $GITHUB_OUTPUT # echo "status=$(git log)" >> $GITHUB_OUTPUT diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81da663..407cc44 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,8 +39,8 @@ jobs: run: | echo "The time was ${{ steps.hello.outputs.time }}" echo "The pwd was ${{ steps.hello.outputs.pwd }}" - echo "The ls was ${{ steps.hello.outputs.ls }}" - echo "The status was ${{ steps.hello.outputs.status }}" + # echo "The ls was ${{ steps.hello.outputs.ls }}" + # echo "The status was ${{ steps.hello.outputs.status }}" build-yml-check: uses: ./.github/workflows/build-yml-check.yml