From 1678e1366e8a14422bc24e73e34ee684788b0fbb Mon Sep 17 00:00:00 2001 From: zwitschi Date: Sat, 1 Nov 2025 19:47:02 +0100 Subject: [PATCH] fix: remove unnecessary build and push jobs from CI/CD pipeline --- .gitea/workflows/ci.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 42a08e8..240cab9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -32,10 +32,6 @@ jobs: # run: | # python -m flake8 web/ tests/ --max-line-length=120 - build: - runs-on: ubuntu-latest - needs: test - steps: - name: Checkout code uses: actions/checkout@v4 @@ -47,13 +43,6 @@ jobs: run: | docker run --rm jobs-app python -m pytest tests/ -v - push: - runs-on: ubuntu-latest - needs: [build, test] - steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Push Docker image to gitea registry uses: docker/build-push-action@v4 env: @@ -62,7 +51,7 @@ jobs: with: context: . push: true - tags: git.allucanget.biz/allucanget/jobs-app:latest + tags: git.allucanget.biz/allucanget/jobs:latest # deploy: # runs-on: ubuntu-latest