Ascii Artwork #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: Generate ASCII Artwork | |
on: push | |
jobs: | |
ascii_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install Cowsay Program | |
run: sudo apt-get install cowsay -y | |
- name: Execute Cowsay CMD | |
run: cowsay -f dragon "Run for cover, I am a Dragon....Rawr" >> dragon.txt | |
- name: Test File Exists | |
run: grep -i "dragon" dragon.txt | |
- name: Read File | |
run: cat dragon.txt | |
- name: List Repo Files | |
run: ls -ltra |