Skip to content

Commit

Permalink
Update first-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrown9100 committed Jan 24, 2024
1 parent e883cc5 commit 3299850
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/first-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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 }}

0 comments on commit 3299850

Please sign in to comment.