diff --git a/.gitea/workflows/pipeline.yml b/.gitea/workflows/pipeline.yml index 394c807..0d11c97 100644 --- a/.gitea/workflows/pipeline.yml +++ b/.gitea/workflows/pipeline.yml @@ -16,4 +16,19 @@ jobs: - name: List files in the repository run: | ls ${{ gitea.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + - run: echo "🍏 This job's status is ${{ job.status }}." + + docker: + runs-on: ubuntu-latest + steps: + - name: Set up QEMU + uses: docker/setup-qemu-action@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v4 + + - name: Build and push to local registry + uses: docker/build-push-action@v7 + with: + push: true + tags: https://git.mnl-lab.de/${{ gitea.repository }}:latest \ No newline at end of file