variables at 3 levels #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: variables at 3 levels | |
on: workflow_dispatch | |
env: | |
DAY_OF_WEEK: Monday | |
jobs: | |
greeting_job: | |
runs-on: ubuntu-latest | |
env: | |
Greeting: Hello | |
steps: | |
- name: "Say Hello Mona it's Monday" | |
if: ${{ env.DAY_OF_WEEK == 'Monday' }} | |
run: echo "$Greeting $First_Name. Today is $DAY_OF_WEEK!" | |
env: | |
First_Name: Mona |