Hello World #1
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: Hello World | |
on: | |
workflow_dispatch: | |
jobs: | |
print-variable: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Define and print a variable | |
run: | | |
MY_VARIABLE="Hello, World!" | |
echo "The value of MY_VARIABLE is: $MY_VARIABLE" | |