Skip to content

Commit

Permalink
[BLD] Remove hosted chroma workflow dispatches (#1832)
Browse files Browse the repository at this point in the history
Will be put back once hosted-chroma k8s is in its proper state -- this
is a temporary measure to keep OSS CI green
  • Loading branch information
beggers authored Mar 6, 2024
1 parent 068b6fe commit c831485
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/chroma-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,39 +141,3 @@ jobs:
artifacts: "dist/chroma-${{steps.version.outputs.version}}.tar.gz"
allowUpdates: true
prerelease: true
- 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: 'build-and-publish-frontend.yaml',
ref: 'main'
})
console.log(result)
- name: Trigger Hosted Chroma Coordinator 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: 'build-and-deploy-coordinator.yaml',
ref: 'main'
})
console.log(result)
- name: Trigger Hosted Worker 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: 'build-and-deploy-worker.yaml',
ref: 'main'
})
console.log(result)

0 comments on commit c831485

Please sign in to comment.