Some checks failed
Build Docker Image / Docker-Build (push) Failing after 7s
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
18 lines
327 B
YAML
18 lines
327 B
YAML
name: Build Docker Image
|
|
run-name: ${{ gitea.actor }} building ${{ gitea.ref_name }}
|
|
on:
|
|
push:
|
|
branches:
|
|
- podman
|
|
|
|
jobs:
|
|
Docker-Build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build docker image
|
|
run: podman build -t umbrella .
|
|
|