From 90abd35b9202d01a462b4cf92092b9604ef20425 Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Tue, 5 Apr 2022 09:40:41 -0700 Subject: [PATCH] Previously had uses and run keys in the same step. That caused all jobs to fail at parsing the workflow yml. --- .github/workflows/detection-testing.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/detection-testing.yml b/.github/workflows/detection-testing.yml index ef6af6d8fd..b70056a0c6 100644 --- a/.github/workflows/detection-testing.yml +++ b/.github/workflows/detection-testing.yml @@ -306,7 +306,7 @@ jobs: config_tests_8.json.results config_tests_9.json.results - - name: Upload S3 Badge and Summary Artifacts for Nightly Scheduled Run + - name: Log in to S3 for Artifact Uploads if: ${{ github.event_name == 'schedule' }} uses: aws-actions/configure-aws-credentials@v1 with: @@ -314,6 +314,9 @@ jobs: aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: us-west-2 + + - name: Upload S3 Badge and Summary Artifacts for Nightly Scheduled Run + if: ${{ github.event_name == 'schedule' }} run: | cd bin/docker_detection_tester python generate_detection_coverage_badge.py --input_summary_file summary_test_results.json --output_badge_file detection_coverage.svg --badge_string "Pass Rate"