From 312d526ebcffe2221e9649be67421cc95d51ded7 Mon Sep 17 00:00:00 2001 From: Nathan Flurry Date: Wed, 2 Sep 2026 19:25:17 -0700 Subject: [PATCH] feat(release): notify managed services --- .github/workflows/publish.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index ef142e964e..2fe2b00e93 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -486,3 +486,16 @@ jobs: pnpm --filter=publish exec tsx src/ci/bin.ts publish-crates \ --version ${{ needs.context.outputs.version }} \ --allow-dirty + + notify-managed-services: + name: Notify managed services + needs: [context, publish-npm, release-assets, publish-crates] + if: ${{ success() && needs.context.outputs.trigger == 'release' }} + runs-on: ubuntu-latest + steps: + - uses: rivet-dev/rivet/.github/actions/managed-services-dispatch@main + with: + product: agentos + version: ${{ needs.context.outputs.version }} + sha: ${{ github.sha }} + token: ${{ secrets.MANAGED_SERVICES_DISPATCH_TOKEN }}