diff --git a/.gitea/workflows/ci-cd.yml b/.gitea/workflows/ci-cd.yml index 7560bce..714b26c 100644 --- a/.gitea/workflows/ci-cd.yml +++ b/.gitea/workflows/ci-cd.yml @@ -2,9 +2,9 @@ name: CI/CD Pipeline on: push: - branches: [ main, develop ] + branches: [ main, develop, dev ] pull_request: - branches: [ main, develop ] + branches: [ main, develop, dev ] env: PYTHON_VERSION: "3.11" @@ -105,7 +105,7 @@ jobs: name: Push to Gitea Registry runs-on: ubuntu-latest needs: [build] - if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' + if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/dev' steps: - name: Checkout code