lubitest/.forgejo/workflows/demo.yml

19 lines
592 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-12-11 17:26:08 +00:00
TEST_SECRET: '${{ secrets.LUBIS_TEST_SECRET }}'
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 23:21:12 +00:00
run: docker run --rm alpine:edge echo hello world
2024-11-28 18:34:29 +00:00
- name: Hello world action step
id: hello
2024-12-11 17:15:09 +00:00
uses: https://git.hannover.ccc.de/lubiana/hello-world-podman@v6
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 }}"