From d46fb9e642510a32758ae2dd0bdf40fe9239286b Mon Sep 17 00:00:00 2001 From: Chris L Date: Sun, 1 May 2022 14:49:27 +0200 Subject: [PATCH] set env vars --- .github/workflows/automation.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/automation.yml b/.github/workflows/automation.yml index 6b8b990..a699d73 100644 --- a/.github/workflows/automation.yml +++ b/.github/workflows/automation.yml @@ -17,14 +17,14 @@ jobs: needs: build steps: - name: Setup env - run: | - echo $SOURCE_NAME - echo $SOURCE_BRANCH - echo $SOURCE_TAG - env: - SOURCE_NAME: ${{ steps.branch_name.outputs.SOURCE_NAME }} - SOURCE_BRANCH: ${{ steps.branch_name.outputs.SOURCE_BRANCH }} - SOURCE_TAG: ${{ steps.branch_name.outputs.SOURCE_TAG }} + run: | + echo $SOURCE_NAME + echo $SOURCE_BRANCH + echo $SOURCE_TAG + env: + SOURCE_NAME: ${{ steps.branch_name.outputs.SOURCE_NAME }} + SOURCE_BRANCH: ${{ steps.branch_name.outputs.SOURCE_BRANCH }} + SOURCE_TAG: ${{ steps.branch_name.outputs.SOURCE_TAG }} - name: Download artifact uses: actions/download-artifact@v2