Skip to content

commit again

commit again #1

name: ASCII Workflow
on:
- push
jobs:
first_job:
name: ASCII
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Cowsay Program
run: sudo apt-get install cowsay -y
- name: Execute Cowsay Command
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