From 0e025d2fcd7d313794d2ae1f1434ec045de92eaf Mon Sep 17 00:00:00 2001 From: fynnbe Date: Mon, 25 Mar 2024 16:30:31 +0100 Subject: [PATCH] test needs staged version as input --- .github/workflows/stage.yaml | 2 +- .github/workflows/stage_call.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stage.yaml b/.github/workflows/stage.yaml index 4e52e3ef..829e4e28 100644 --- a/.github/workflows/stage.yaml +++ b/.github/workflows/stage.yaml @@ -30,7 +30,7 @@ jobs: uses: ./.github/workflows/test_call.yaml with: resource_id: ${{inputs.resource_id}} - version: ${{inputs.package_url}} + version: ${{needs.stage.outputs.version}} S3_HOST: ${{vars.S3_HOST}} S3_BUCKET: ${{vars.S3_BUCKET}} S3_FOLDER: ${{vars.S3_FOLDER}} diff --git a/.github/workflows/stage_call.yaml b/.github/workflows/stage_call.yaml index 1f0fa4ed..58ed74fd 100644 --- a/.github/workflows/stage_call.yaml +++ b/.github/workflows/stage_call.yaml @@ -21,9 +21,9 @@ on: required: true type: string outputs: - firstword: - description: "The first output string" - value: ${{ jobs.example_job.outputs.output1 }} + version: + description: "staged version incl 'stage/' prefix" + value: ${{ jobs.run.outputs.version }} concurrency: ${{inputs.resource_id}}-call