lubitest/.forgejo/workflows/demo.yml

16 lines
452 B
YAML
Raw Normal View History

2023-10-07 17:39:18 +00:00
on: [push]
jobs:
2024-06-10 18:55:49 +00:00
build:
env:
RUNNER_TOOL_CACHE: /toolcache
2024-07-25 16:07:23 +00:00
runs-on: podman
2024-06-26 20:04:33 +00:00
name: A job to say hello
2023-10-07 17:39:18 +00:00
steps:
2024-06-26 20:03:50 +00:00
- name: Hello world action step
id: hello
uses: https://git.php.fail/lubiana/hello-world-podman@v2
with:
who-to-greet: 'Mona the Octocat'
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"