updated job2 #2
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 "Step1 complete!" | |
- name: Echo Command 2 in Job 1 | |
run: echo "Step2 complete!" | |
job2: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cowsay Hello | |
uses: peter-evans/cowsay@v1 | |
with: | |
message: "Ready for prod–ship it!" |