Skip to content

Commit 2631c8b

Browse files
committed
Fix variable record id
1 parent 3d5a0d3 commit 2631c8b

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/testing.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,17 @@ on:
2020
jobs:
2121
constants:
2222
runs-on: ubuntu-latest
23+
outputs:
24+
ZENODO_RECORD_ID: ${{ steps.output_env.outputs.ZENODO_RECORD_ID }}
2325
steps:
24-
- run: echo "ZENODO_RECORD_ID=${{ env.ZENODO_RECORD_ID }}" >> $GITHUB_OUTPUT
26+
- id: output_env
27+
run: echo "ZENODO_RECORD_ID=${{ env.ZENODO_RECORD_ID }}" >> $GITHUB_OUTPUT
2528
prepare_test_data:
2629
needs: constants
2730
uses: ./.github/workflows/prepare_test_data.yml
2831
secrets: inherit
2932
with:
30-
zenodo_record_id: 17423608
33+
zenodo_record_id: ${{ needs.constants.outputs.ZENODO_RECORD_ID }}
3134

3235
test_and_build:
3336
needs: prepare_test_data

0 commit comments

Comments
 (0)