From 45c5a25d5424fa086d1e20c19aa9615858decbb3 Mon Sep 17 00:00:00 2001 From: Abdul Rabbani Date: Fri, 17 Jun 2022 12:53:22 -0400 Subject: [PATCH] Update write to file --- .github/workflows/tests.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 8c0bfb67..213477a5 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -46,15 +46,17 @@ jobs: - name: Output variables to files run: | echo $GITHUB_REPOSITORY > /tmp/git_repository - echo ${{ inputs.STACK_ORCHESTRATOR_REF }} > /tmp/ipld_eth_db_ref - echo ${{ inputs.IPLD_ETH_DB_REF }} > /tmp/stack_orchestrator_ref + echo ${{ inputs.IPLD_ETH_DB_REF }} > /tmp/ipld_eth_db_ref + echo ${{ inputs.STACK_ORCHESTRATOR_REF }} > /tmp/stack_orchestrator_ref [ -z "$GITHUB_HEAD_REF" ] && echo $GITHUB_REF_NAME > /tmp/git_head_ref || echo $GITHUB_HEAD_REF > /tmp/git_head_ref echo "-----BEGIN OPENSSH PRIVATE KEY-----" >> /tmp/key echo ${{ env.BUILD_KEY }} >> /tmp/key echo "-----END OPENSSH PRIVATE KEY-----" >> /tmp/key chmod 400 /tmp/key - cat /tmp/git_repository - cat /tmp/git_head_ref + cat /tmp/git_repository + cat /tmp/git_head_ref + cat /tmp/stack_orchestrator_ref + cat /tmp/ipld_eth_db_ref - name: Raw SCP run: |