From 27132df4668097890f2306248117747424ef70a8 Mon Sep 17 00:00:00 2001 From: Manuel Fehren Date: Tue, 21 Apr 2026 08:36:25 +0200 Subject: [PATCH] changed push action --- .gitea/workflows/pipeline.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pipeline.yml b/.gitea/workflows/pipeline.yml index 45ddec9..e9a8676 100644 --- a/.gitea/workflows/pipeline.yml +++ b/.gitea/workflows/pipeline.yml @@ -32,7 +32,7 @@ jobs: id: create_release uses: actions/create-release@v1 env: - GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} # This token is provided by Actions, you do not need to create your own token + GITHUB_TOKEN: ${{ secrets.GITEA_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: tag_name: ${{ gitea.ref }} release_name: Release ${{ gitea.ref }} @@ -60,12 +60,17 @@ jobs: uses: docker/build-push-action@v7 with: context: ./website/ + file: ./Dockerfile + allow: network.host,security.insecure push: true tags: git.mnl-lab.de/${{gitea.repository_owner}}/camera-crawler_website:latest - name: Build and push uses: docker/build-push-action@v7 with: + TOKEN: ${{ secrets.GITEA_TOKEN }} # This token is provided by Actions, you do not need to create your own token context: ./crawler/ + file: ./Dockerfile + allow: network.host,security.insecure push: true - tags: git.mnl-lab.de/${{gitea.repository_owner}}/camera-crawler_crawler:latest + tags: git.mnl-lab.de/${{gitea.repository_owner}}/camera-crawler_crawler:latest \ No newline at end of file