From adeb52d5c0a74d7653728be072dcf85ee512c399 Mon Sep 17 00:00:00 2001 From: kasun Date: Wed, 27 May 2026 21:50:59 +0200 Subject: [PATCH] fix: add explicit npm install step to resolve missing Pulumi SDK error Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/deploy-proxmox-infra.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/deploy-proxmox-infra.yaml b/.gitea/workflows/deploy-proxmox-infra.yaml index b93822a..f19ad36 100644 --- a/.gitea/workflows/deploy-proxmox-infra.yaml +++ b/.gitea/workflows/deploy-proxmox-infra.yaml @@ -29,6 +29,10 @@ jobs: - name: Restore Stack Config run: echo "${{ secrets.PULUMI_DEV_YAML }}" | base64 -d > proxmox-infra/Pulumi.dev.yaml + - name: Install Dependencies + run: npm install + working-directory: proxmox-infra + - name: Preview uses: pulumi/actions@v5 with: @@ -55,6 +59,10 @@ jobs: - name: Restore Stack Config run: echo "${{ secrets.PULUMI_DEV_YAML }}" | base64 -d > proxmox-infra/Pulumi.dev.yaml + - name: Install Dependencies + run: npm install + working-directory: proxmox-infra + - name: Refresh State uses: pulumi/actions@v5 with: