From ef451c8a164f11ba84231068b417f9b77f3dd4a7 Mon Sep 17 00:00:00 2001 From: Ben Eggers Date: Wed, 1 May 2024 17:13:29 -0700 Subject: [PATCH] [BLD] Re-enable hosted CD --- .github/workflows/release-hosted.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/release-hosted.yml diff --git a/.github/workflows/release-hosted.yml b/.github/workflows/release-hosted.yml new file mode 100644 index 00000000000..18fa532ebd6 --- /dev/null +++ b/.github/workflows/release-hosted.yml @@ -0,0 +1,25 @@ +name: Release hosted + +on: + push: + branches: + - main + paths: + - 'k8s/**' + workflow_dispatch: + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Trigger Hosted Chroma FE Release + uses: actions/github-script@v6 + with: + github-token: ${{ secrets.HOSTED_CHROMA_WORKFLOW_DISPATCH_TOKEN }} + script: | + const result = await github.rest.actions.createWorkflowDispatch({ + owner: 'chroma-core', + repo: 'hosted-chroma', + workflow_id: 'update_oss.yaml', + ref: 'main' + }) \ No newline at end of file