diff --git a/.github/workflows/on-pr.yml b/.github/workflows/on-pr.yml index f054e14..89c411e 100644 --- a/.github/workflows/on-pr.yml +++ b/.github/workflows/on-pr.yml @@ -43,3 +43,4 @@ jobs: ipld-ethcl-db-ref: ${{ github.event.inputs.ipld-ethcl-db-ref }} secrets: GHA_KEY: ${{secrets.GHA_KEY}} + BC_ADDRESS: ${{secrets.BC_ADDRESS}} diff --git a/.github/workflows/on-publish.yml b/.github/workflows/on-publish.yml index 2e593cd..1dd59cf 100644 --- a/.github/workflows/on-publish.yml +++ b/.github/workflows/on-publish.yml @@ -16,6 +16,9 @@ jobs: with: stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref }} ipld-ethcl-db-ref: ${{ github.event.inputs.ipld-ethcl-db-ref }} + secrets: + GHA_KEY: ${{secrets.GHA_KEY}} + BC_ADDRESS: ${{secrets.BC_ADDRESS}} build: name: Run docker build runs-on: ubuntu-latest diff --git a/.github/workflows/system-tests.yml b/.github/workflows/system-tests.yml index 397cf50..2926b41 100644 --- a/.github/workflows/system-tests.yml +++ b/.github/workflows/system-tests.yml @@ -11,6 +11,8 @@ on: secrets: GHA_KEY: required: true + BC_ADDRESS: + required: true env: stack-orchestrator-ref: ${{ inputs.stack-orchestrator-ref || '2e0d4f4f3cba4dc526df96818351a109dc295efa' }} ipld-ethcl-db-ref: ${{ inputs.ipld-ethcl-db-ref || 'feature/historic-processing' }}