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