diff --git a/.github/workflows/composite.release.yml b/.github/workflows/composite.release.yml index ebffe9e..3fec2ed 100644 --- a/.github/workflows/composite.release.yml +++ b/.github/workflows/composite.release.yml @@ -12,8 +12,13 @@ jobs: release: runs-on: ubuntu-latest if: | - github.event_name == 'push' && - github.ref == 'refs/heads/main' + github.event_name == 'push' && ( + github.ref == 'refs/heads/alpha' || + github.ref == 'refs/heads/beta' || + github.ref == 'refs/heads/canary' || + github.ref == 'refs/heads/main' || + github.ref == 'refs/heads/pre/rc' + ) steps: - name: Checkout uses: actions/checkout@v4