13 lines
194 B
YAML
13 lines
194 B
YAML
name: Simple Docker Hello World Test
|
|
on:
|
|
- push
|
|
|
|
|
|
jobs:
|
|
hello-world:
|
|
runs-on: gitea-main
|
|
container:
|
|
image: alpine
|
|
steps:
|
|
- run: echo "Target branch ${{ gitea.ref }}"
|