lubitest/.forgejo/workflows/demo.yml
lubiana c7d3a14f3a
All checks were successful
/ A job to say hello (push) Successful in 30s
Update .forgejo/workflows/demo.yml
2024-12-11 21:44:49 +00:00

21 lines
No EOL
689 B
YAML

on: [push]
jobs:
build:
container:
image: git.hannover.ccc.de/c3h/leitstelle-forgejo-actions/runner:latest
env:
RUNNER_TOOL_CACHE: /toolcache
TEST_SECRET: '${{ secrets.LUBIS_TEST_SECRET }}'
runs-on: podman
name: A job to say hello
steps:
- name: podman
run: podman 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@v6
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 }}"