-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disable first workflow and rewrite ascii with new flow
- Loading branch information
1 parent
deed542
commit 5fdd2dc
Showing
3 changed files
with
23 additions
and
30 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
name: First Workflow | ||
# name: First Workflow | ||
|
||
on: | ||
- push | ||
# on: | ||
# - push | ||
|
||
jobs: | ||
first_job: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
# jobs: | ||
# first_job: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout Code | ||
# uses: actions/checkout@v4 | ||
|
||
- name: List and Read files | ||
run: | | ||
echo "My first GitHub Actions Job Today" | ||
ls -1 | ||
cat Dockerfile | ||
# - name: List and Read files | ||
# run: | | ||
# echo "My first GitHub Actions Job Today" | ||
# ls -1 | ||
# cat Dockerfile |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# /bin/bash | ||
sudo apt-get install cowsay -y | ||
cowsay -f dragon "Run for cover, I am a DRAGON......RAWR" >> dragon.txt | ||
grep -i "dragon" dragon.txt | ||
cat dragon.txt | ||
ls -ltra |