fix(server): drop request-scoped openai-compat envelope from persiste… #74
This file contains hidden or 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
| name: Deploy Server | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'packages/server/**' | |
| - 'packages/protocol/**' | |
| - 'packages/admin-ui/**' | |
| - 'pnpm-lock.yaml' | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v5 | |
| - name: Deploy to Fly.io | |
| uses: superfly/flyctl-actions/setup-flyctl@master | |
| - name: Fly deploy | |
| run: flyctl deploy --remote-only --config packages/server/fly.toml | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
| - name: Smoke test deployed health endpoint | |
| run: curl --fail --retry 10 --retry-all-errors --retry-delay 3 https://vicoop-bridge-server.fly.dev/healthz |