Skip to content

Commit

Permalink
test variables
Browse files Browse the repository at this point in the history
  • Loading branch information
BuddyGlas committed Jun 17, 2024
1 parent 164f022 commit 8442ead
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/collator-selection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,17 @@ jobs:
tag: ${{ matrix.relay_branch }}

outputs:
result: ${{ steps.polkadot.outputs.exists }}
result_conclusion: ${{ steps.polkadot.outputs.conclusion }}
image: ${{ steps.polkadot.outputs.image }}
tag: ${{ steps.polkadot.outputs.tag }}
needs: collator-selection
runs-on: [self-hosted]
steps:
- name: Output 1
run: echo "Result: ${{ needs.collator-selection.result }}"

- name: Output 2
run: echo "Result conclusion: ${{ needs.collator-selection.result_conclusion }}"

- name: Output 3
run: echo "Image: ${{ needs.collator-selection.image }}"

- name: Output 4
run: echo "Tag: ${{ needs.collator-selection.tag }}"

0 comments on commit 8442ead

Please sign in to comment.