From 4e3eb03040ec21ce3325eb2d4ac2fd8276aaf0aa Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 4 Oct 2024 12:10:16 -0700 Subject: [PATCH] try again --- .github/workflows/checks.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 0cbdc53b1..89e487ec2 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -96,9 +96,19 @@ jobs: - name: Check if secret is present run: | if [ -z "${{ secrets.E2E_BUCKET_NAME }}" ]; then - echo "Secret is empty or not set" + echo "E2E_BUCKET_NAME is empty or not set" else - echo "Secret length is ${#${{ secrets.E2E_BUCKET_NAME }}}" + echo "E2E_BUCKET_NAME length is ${#${{ secrets.E2E_BUCKET_NAME }}}" + fi + if [ -z "${{ secrets.DANGEROUS_SALT }}" ]; then + echo "DANGEROUS_SALT is empty or not set" + else + echo "DANGEROUS_SALT length is ${#${{ secrets.DANGEROUS_SALT }}}" + fi + if [ -z "${{ secrets.NEW_RELIC_LICENSE_KEY }}" ]; then + echo "NEW_RELIC_LICENSE_KEY is empty or not set" + else + echo "NEW_RELIC_LICENSE_KEY length is ${#${{ secrets.NEW_RELIC_LICENSE_KEY }}}" fi - name: Run Admin server # If we want to log stuff and see what's broken,