diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 312d1d88..c2bfc5b3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,10 +2,10 @@ name: CI on: push: - branches: [master] + branches: [main, master] tags: ["v*"] pull_request: - branches: [master] + branches: [main, master] schedule: - cron: 0 4 * * * @@ -42,7 +42,7 @@ jobs: name: Release processor image runs-on: ubuntu-latest needs: test - if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master') + if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') steps: - name: Checkout commit uses: actions/checkout@v4