Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/deploy-vercel-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ jobs:
GITPULSE_SITE_URL: ${{ vars.VERCEL_SITE_URL }}
OPENAI_API_KEY: ${{ secrets.MINIMAX_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Image generation: Gemini for the model, Vercel Blob for hosting.
# Both must be set together — adding only one trips the other half
# of the pipeline (cfg.imageAi vs createStorage).
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
BLOB_READ_WRITE_TOKEN: ${{ secrets.BLOB_READ_WRITE_TOKEN }}

- name: Build site from main source
run: |
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/deploy-vercel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ jobs:
GITPULSE_SITE_URL: ${{ vars.VERCEL_SITE_URL }}
OPENAI_API_KEY: ${{ secrets.MINIMAX_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Image generation: Gemini for the model, Vercel Blob for hosting.
# Both must be set together — adding only one trips the other half
# of the pipeline (cfg.imageAi vs createStorage).
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
BLOB_READ_WRITE_TOKEN: ${{ secrets.BLOB_READ_WRITE_TOKEN }}

- name: Build site (gitpulse build)
run: gitpulse build
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/self-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ jobs:
GITPULSE_SITE_URL: ${{ vars.VERCEL_SITE_URL }}
OPENAI_API_KEY: ${{ secrets.MINIMAX_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Image generation: Gemini for the model, Vercel Blob for hosting.
# Both must be set together — adding only one trips the other half
# of the pipeline (cfg.imageAi vs createStorage).
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
BLOB_READ_WRITE_TOKEN: ${{ secrets.BLOB_READ_WRITE_TOKEN }}

- name: Stage analyzer output for the in-repo site
run: |
Expand Down