From b6900f962951d949af3fb8de8ed9c4be040ec520 Mon Sep 17 00:00:00 2001 From: "manuel.fehren" Date: Mon, 20 Apr 2026 12:05:12 +0200 Subject: [PATCH] .gitea/workflows/pipeline.yml aktualisiert --- .gitea/workflows/pipeline.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pipeline.yml b/.gitea/workflows/pipeline.yml index 7a3f4d4..5412076 100644 --- a/.gitea/workflows/pipeline.yml +++ b/.gitea/workflows/pipeline.yml @@ -16,7 +16,9 @@ jobs: - name: List files in the repository run: | ls ${{ gitea.workspace }} + - run: echo "Default Content: ${{defaultContext}}." - run: echo "🍏 This job's status is ${{ job.status }}." + docker: runs-on: ubuntu-latest @@ -24,13 +26,16 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v4 + - name: Check out code + uses: actions/checkout@v6 + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 working-directory: website - - name: Build and push to local registry + - name: Build and push uses: docker/build-push-action@v7 - working-directory: website with: + context: ./website/ push: true - tags: https://git.mnl-lab.de/${{ gitea.repository }}:latest \ No newline at end of file + tags: user/app:latest \ No newline at end of file