Merge pull request #666 from spiffytech/dev #780
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 | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| workflow_dispatch: | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: latest | |
| # Workaround for Pulumi version conflict: | |
| # GitHub runners have Pulumi 3.212.0+ pre-installed, which removed the -root flag | |
| # from pulumi-language-nodejs (see https://github.com/pulumi/pulumi/pull/21065). | |
| # SST 3.17.x uses Pulumi SDK 3.210.0 which still passes -root, causing a conflict. | |
| # Removing the system language plugin forces SST to use its bundled compatible version. | |
| # TODO: Remove when sst supports Pulumi >3.210.0 | |
| - name: Fix Pulumi version conflict | |
| run: sudo rm -f /usr/local/bin/pulumi-language-nodejs | |
| - name: Install dependencies | |
| run: bun install | |
| - run: bun sst deploy --stage=dev | |
| env: | |
| CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} |