Skip to content

Commit

Permalink
Ascii Artwork
Browse files Browse the repository at this point in the history
  • Loading branch information
aoltean-plenty authored Oct 14, 2024
1 parent 6aa7475 commit e0b20bc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/generate-ascii.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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

0 comments on commit e0b20bc

Please sign in to comment.