[BUG] Use correct env for query/compact in helm (#2097) #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TODO Once distributed chroma is operational, update this to update the | |
# OSS helm chart we'll host. For now, just kick off the job which updates | |
# hosted-chroma's version. | |
name: Release Helm Chart | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'k8s/**' | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- 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: 'copy-oss-helm.yaml', | |
ref: 'main' | |
}) | |
console.log(result) |