mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-20 11:56:47 +08:00
16 lines
315 B
YAML
16 lines
315 B
YAML
name: Hello World Docker Action Workflow
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
hello_world_job:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Hello World Docker Action
|
|
uses: ./docker-action-host-env/action
|
|
with:
|
|
who-to-greet: "GitHub"
|