lubitest/.forgejo/workflows/demo.yml
lubiana 325c0af7a4
Some checks failed
/ A job to say hello (push) Failing after 21s
Update .forgejo/workflows/demo.yml
2024-12-11 13:46:11 +00:00

18 lines
No EOL
542 B
YAML

on: [push]
jobs:
build:
env:
RUNNER_TOOL_CACHE: /toolcache
runs-on: podman
name: A job to say hello
steps:
- name: podman
run: docker run -it --rm alpine:edge echo hello world
- name: Hello world action step
id: hello
uses: https://git.hannover.ccc.de/lubiana/hello-world-podman@v5
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 }}"