diff --git a/.gitea/workflows/podman.yaml b/.gitea/workflows/podman.yaml new file mode 100644 index 0000000..0156116 --- /dev/null +++ b/.gitea/workflows/podman.yaml @@ -0,0 +1,17 @@ +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 . +