From 32998504c00f61f4e12228748b0ab4926e53f234 Mon Sep 17 00:00:00 2001 From: Joe Brown <7435363+jbrown9100@users.noreply.github.com> Date: Wed, 24 Jan 2024 10:13:43 -0500 Subject: [PATCH] Update first-workflow.yml --- .github/workflows/first-workflow.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/first-workflow.yml b/.github/workflows/first-workflow.yml index 95f5487..2f4edda 100644 --- a/.github/workflows/first-workflow.yml +++ b/.github/workflows/first-workflow.yml @@ -26,8 +26,7 @@ jobs: # Runs a single command using the runners shell - name: Step one run: echo "Log from step one" - env: - VARIABLE_NAME: value + - name: Step two run: echo "Log from step two" @@ -37,10 +36,13 @@ jobs: runs-on: ubuntu-latest steps: + - name: CowSaysVariable + env: + COWSAYS_COLOR: "green" - name: Cowsays uses: mscoutermarsh/cowsays-action@v1 with: # What does the cow say? text: 'Ready for prod--ship it!' # Color of your cow - color: 'magenta' + color: ${{ env.COWSAYS_COLOR }}