From c7df7b0de25a3728a516261b14b3fea535108005 Mon Sep 17 00:00:00 2001 From: Kuan Fan Date: Wed, 27 Dec 2023 15:35:52 -0800 Subject: [PATCH] try env print --- .github/workflows/temp.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/temp.yaml b/.github/workflows/temp.yaml index 36fb0e9f8..5d095536a 100644 --- a/.github/workflows/temp.yaml +++ b/.github/workflows/temp.yaml @@ -9,12 +9,12 @@ jobs: runs-on: ubuntu-latest outputs: - env-variable: ${{ steps.set-env-variable.outputs.env-variable }} + envvar: ${{ steps.set-env-variable.outputs.envvar }} steps: - name: Set Environment Variable id: set-env-variable - run: echo "env-variable=Hello" >> $GITHUB_ENV + run: echo "envvar=Hello" >> $GITHUB_ENV show-variable: needs: create-variable @@ -23,4 +23,4 @@ jobs: steps: - name: Display Environment Variable run: | - echo "Environment Variable: ${{ needs.create-variable.outputs.env-variable }}" \ No newline at end of file + echo "Environment Variable: ${{ needs.create-variable.outputs.envvar }}" \ No newline at end of file