From 8442ead42ea28c18cf1ab20f5cf47182ef9fbf89 Mon Sep 17 00:00:00 2001 From: Konstantin Astakhov Date: Mon, 17 Jun 2024 21:45:40 +0700 Subject: [PATCH] test variables --- .github/workflows/collator-selection.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/collator-selection.yml b/.github/workflows/collator-selection.yml index 5d97a55c0b..635c5e8056 100644 --- a/.github/workflows/collator-selection.yml +++ b/.github/workflows/collator-selection.yml @@ -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 }}"