Skip to content

Commit

Permalink
[BLD] Re-enable hosted CD
Browse files Browse the repository at this point in the history
  • Loading branch information
beggers committed May 2, 2024
1 parent c95fea6 commit ef451c8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release-hosted.yml
Original file line number Diff line number Diff line change
@@ -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'
})

0 comments on commit ef451c8

Please sign in to comment.