Skip to content

Commit f8da3be

Browse files
Create main.yml
1 parent e22ee89 commit f8da3be

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Diff for: .github/workflows/main.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: [push]
2+
3+
jobs:
4+
hello_world_job:
5+
runs-on: ubuntu-latest
6+
name: A job to say hello
7+
steps:
8+
- name: Hello world action step
9+
id: hello
10+
uses: marko-zivic-93/[email protected]
11+
with:
12+
who-to-greet: 'Marko Zivic'
13+
# Use the output from the `hello` step
14+
- name: Get the output time
15+
run: echo "The time was ${{ steps.hello.outputs.time }}"

0 commit comments

Comments
 (0)