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