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-12-11 13:01:25 +00:00
|
|
|
- name: podman
|
2024-12-11 13:42:28 +00:00
|
|
|
run: docker run -it --rm alpine:edge echo hello world
|
2024-11-28 18:34:29 +00:00
|
|
|
- name: Hello world action step
|
|
|
|
id: hello
|
2024-12-11 13:46:11 +00:00
|
|
|
uses: https://git.hannover.ccc.de/lubiana/hello-world-podman@v5
|
2024-11-28 18:34:29 +00:00
|
|
|
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 }}"
|