multi-line step and cowsay cmd #3
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: My First Workflow | |
on: push | |
jobs: | |
first_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: List and Read file | |
run: | | |
echo "My first GitHub Actions Job" | |
ls -ltra | |
cat README.md | |
- name: Generate ASCII Artwork | |
run: cowsay -f dragon "Run for cover, I am a DRAGON....RAWR" >> dragon.txt | |
# - name: List files | |
# run: ls | |
# - name: Read file | |
# run: cat README.md | |