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 }}