From 58055a310a560ca69bd401605d5b63a7a297b0ba Mon Sep 17 00:00:00 2001 From: Bruno <15909838+thetoolsmith@users.noreply.github.com> Date: Tue, 21 Jan 2025 16:49:39 -0500 Subject: [PATCH] test using gha codebuild runner and aws secrets --- .github/workflows/codebuild_runner_test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codebuild_runner_test.yml b/.github/workflows/codebuild_runner_test.yml index 55b7e455..3bebbc0d 100644 --- a/.github/workflows/codebuild_runner_test.yml +++ b/.github/workflows/codebuild_runner_test.yml @@ -64,9 +64,9 @@ jobs: - name: check aws secrets id: check-aws-secrets run: | - echo -e "::add-mask::${{ env.TEST_SECRET_1 }}" - echo -e "::add-mask::${{ env.TEST_SECRET_2 }}" - echo -e "${{ env.TEST_SECRET_3 }}" + echo -e "print test-secret-1 ::add-mask::${{ env.TEST_SECRET_1 }} ... mask applied" + echo -e "print test-secret-2 ::add-mask::${{ env.TEST_SECRET_2 }} ... mask applied" + echo -e "print test-secret-3 ${{ env.TEST_SECRET_3 }}" ... no mask applied - name: check env context id: check-env-context