removed text and update echo string #5
This file contains hidden or 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: First Workflow | |
on: [push] | |
jobs: | |
job1: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo Command 1 in Job 1 | |
run: echo -e "\033[35mStep1 complete!\033[0m" | |
- name: Echo Command 2 in Job 1 | |
run: echo -e "\033[35mStep2 complete!\033[0m" | |
job2: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cowsays | |
uses: mscoutermarsh/cowsays-action@v1 | |
with: | |
run: echo "\033[35mReady for prod–ship it!\033[0m" |