We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d5a0d3 commit 2631c8bCopy full SHA for 2631c8b
1 file changed
.github/workflows/testing.yml
@@ -20,14 +20,17 @@ on:
20
jobs:
21
constants:
22
runs-on: ubuntu-latest
23
+ outputs:
24
+ ZENODO_RECORD_ID: ${{ steps.output_env.outputs.ZENODO_RECORD_ID }}
25
steps:
- - 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
28
prepare_test_data:
29
needs: constants
30
uses: ./.github/workflows/prepare_test_data.yml
31
secrets: inherit
32
with:
- zenodo_record_id: 17423608
33
+ zenodo_record_id: ${{ needs.constants.outputs.ZENODO_RECORD_ID }}
34
35
test_and_build:
36
needs: prepare_test_data
0 commit comments