Skip to content

Commit

Permalink
ci(config): update composite.release channels (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
csantiago132 authored Oct 24, 2024
1 parent 53329ca commit ecbc60f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/composite.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ecbc60f

Please sign in to comment.