Skip to content

Commit

Permalink
Fix testing.yml secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
bradbown committed Oct 18, 2024
1 parent 38276df commit 983acfb
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,27 +27,26 @@ on:
traces_api_facade_image_tagged:
required: true
type: string
secrets:
DOCKERHUB_USERNAME:
required: true
DOCKERHUB_TOKEN:
required: true

jobs:
coordinator:
uses: ./.github/workflows/coordinator-testing.yml
if: ${{ always() && (inputs.coordinator_changed == 'true' || inputs.coordinator_image_tagged != 'true') }}
with:
commit_tag: ${{ inputs.commit_tag }}
secrets: inherit

prover:
uses: ./.github/workflows/prover-testing.yml
if: ${{ always() && inputs.prover_changed == 'true' }}
secrets: inherit

postman:
uses: ./.github/workflows/postman-testing.yml
if: ${{ always() && (inputs.postman_changed == 'true' || inputs.postman_image_tagged != 'true') }}
secrets: inherit

traces-api-facade:
uses: ./.github/workflows/traces-api-facade-testing.yml
if: ${{ always() && (inputs.traces_api_facade_changed == 'true' || inputs.traces_api_facade_image_tagged != 'true') }}
secrets: inherit

0 comments on commit 983acfb

Please sign in to comment.