2024-12-12 19:20:48 +00:00
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: docker
|
|
|
|
name: debug
|
|
|
|
steps:
|
2024-12-13 11:44:24 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-12-15 11:16:07 +00:00
|
|
|
- name: hello world action step
|
|
|
|
uses: ./actions/hello
|
|
|
|
with:
|
|
|
|
who-to-greet: 'lubi'
|
|
|
|
- name: Get the output time
|
|
|
|
run: echo "The time was ${{ steps.hello.outputs.time }}"
|
2024-12-15 10:32:25 +00:00
|
|
|
|