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