From ecbc60fbef423aa2454ba6b81017a4eb9bc99c29 Mon Sep 17 00:00:00 2001 From: Carlos Santiago <5726971+csantiago132@users.noreply.github.com> Date: Wed, 23 Oct 2024 19:33:23 -0500 Subject: [PATCH] ci(config): update composite.release channels (#67) --- .github/workflows/composite.release.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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