From 4153cf4e5174bf28753ed57b60f46ef12cce6ebb Mon Sep 17 00:00:00 2001 From: Kris Coleman Date: Wed, 12 Jun 2024 22:14:00 -0400 Subject: [PATCH] chore: point witness run action in swf to judge sandbox for demo we may want to point it to prod judge once we're ready for demo --- .github/workflows/witness.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/witness.yml b/.github/workflows/witness.yml index b08bff3..dc0d78b 100644 --- a/.github/workflows/witness.yml +++ b/.github/workflows/witness.yml @@ -54,6 +54,7 @@ jobs: with: name: ${{ inputs.artifact-download }} path: /tmp + archivista-server: https://judge-api.aws-sandbox-staging.testifysec.dev - if: ${{ inputs.pre-command != '' && inputs.pull_request == false }} uses: testifysec/witness-run-action@2ae7f93c013ccf24b8ff52b4f042b32ca95ec7b8 # v0.1.5 @@ -61,6 +62,7 @@ jobs: step: pre-${{ inputs.step }} attestations: ${{ inputs.attestations }} command: /bin/sh -c "${{ inputs.pre-command }}" + archivista-server: https://judge-api.aws-sandbox-staging.testifysec.dev - if: ${{ inputs.pre-command != '' && inputs.pull_request == true }} run: ${{ inputs.pre-command }} @@ -70,6 +72,7 @@ jobs: step: ${{ inputs.step }} attestations: ${{ inputs.attestations }} command: /bin/sh -c "${{ inputs.command }}" + archivista-server: https://judge-api.aws-sandbox-staging.testifysec.dev - if: ${{ inputs.pull_request == true }} run: ${{ inputs.command }} @@ -78,3 +81,4 @@ jobs: with: name: ${{ inputs.artifact-upload-name }} path: ${{ inputs.artifact-upload-path }} + archivista-server: https://judge-api.aws-sandbox-staging.testifysec.dev