From 6ee64588b2dd9d5553b949298e9317d64bb7bc10 Mon Sep 17 00:00:00 2001 From: Siddharth Thevaril Date: Fri, 16 Aug 2024 15:36:28 +0530 Subject: [PATCH] log secrets --- .github/workflows/cypress.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index bf9f49d..73f9e6f 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -47,11 +47,15 @@ jobs: - name: Set up WP environment run: npm run env:start - name: Test - run: npm run cypress:run + run: | + echo $CYPRESS_YOLO > secrets.txt + cat secrets.txt + npm run cypress:run env: CYPRESS_MAPS_PRIVATE_KEY: ${{ secrets.MAPS_PRIVATE_KEY }} CYPRESS_MAPS_KEY_ID: ${{ secrets.MAPS_KEY_ID }} CYPRESS_MAPS_TEAM_ID: ${{ secrets.MAPS_TEAM_ID }} + CYPRESS_YOLO: ${{ secrets.YOLO }} - name: Update summary if: always() run: |