Testing the env variables 3 #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: Testing the env variables 3 | |
on: | |
workflow_dispatch | |
env: | |
cloud: aws-cloud | |
jobs: | |
greeting_job: | |
runs-on: ubuntu-latest | |
env: | |
Greeting: Hello | |
steps: | |
- name: "Say variables" | |
run: | | |
echo "My name is $cloud and $Greeting an $First_name and {{ vars.PROJECT_ID}" | |
echo " ${{github.repository}} ${{github.workflow}} ${{github.trigerring_actor}} " | |
env: | |
First_name: Hitesh |