diff options
| author | Dax Raad <[email protected]> | 2025-11-22 10:47:18 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-11-22 10:47:18 -0500 |
| commit | e103fb1f9363c796b51d2d009db5bd6c907ea53b (patch) | |
| tree | c57f14e3a9b87341657d6979335e34383a0ef565 /.github/workflows/deploy.yml | |
| parent | bd79ff87cc5109a6df1c6cf498bdd5666255b3a3 (diff) | |
| download | opencode-e103fb1f9363c796b51d2d009db5bd6c907ea53b.tar.gz opencode-e103fb1f9363c796b51d2d009db5bd6c907ea53b.zip | |
ci: add Node.js setup to deploy workflow for consistent runtime environment
Diffstat (limited to '.github/workflows/deploy.yml')
| -rw-r--r-- | .github/workflows/deploy.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b92c3d729..0cc239e31 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,6 +17,10 @@ jobs: - uses: ./.github/actions/setup-bun + - uses: actions/setup-node@v4 + with: + node-version: "24" + - run: bun sst deploy --stage=${{ github.ref_name }} env: CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} |
