test/.forgejo/workflows/demo.yml

20 lines
502 B
YAML
Raw Normal View History

name: Build
run-name: ${{ gitea.actor }} Builder
on:
push:
branches:
- main
2023-10-06 21:31:38 +00:00
jobs:
2024-06-16 09:12:08 +00:00
hello_world_job:
runs-on: ubuntu-latest
2024-06-16 09:12:08 +00:00
name: A job to say hello
steps:
2024-06-16 09:12:08 +00:00
- name: Hello world action step
id: hello
2024-06-16 09:18:40 +00:00
uses: https://git.php.fail/lubiana/hello-world-podman@v2
2024-06-16 09:12:08 +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 }}"