Skip to content

Commit ff82c4b

Browse files
authored
Create first-action.yml
1 parent 8286c1f commit ff82c4b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/first-action.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: first workflow
2+
on: workflow_dispatch
3+
jobs:
4+
first-job:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Print Greeting
8+
run: echo "Hello World"
9+
- name: Two Line command
10+
run: |
11+
echo "first line"
12+
echo "second line"
13+

0 commit comments

Comments
 (0)