From 79fe68b577906009fc77691856e4d61ab0afaead Mon Sep 17 00:00:00 2001 From: kasun Date: Sat, 6 Jun 2026 04:42:31 +0200 Subject: [PATCH] fix: corrected wrong names, format --- .gitea/workflows/04-deploy-k8s-apps.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/04-deploy-k8s-apps.yaml b/.gitea/workflows/04-deploy-k8s-apps.yaml index 0ebded2..a54489a 100644 --- a/.gitea/workflows/04-deploy-k8s-apps.yaml +++ b/.gitea/workflows/04-deploy-k8s-apps.yaml @@ -6,14 +6,14 @@ on: branches: - main paths: - - 'k8s-apps/**' - - '.gitea/workflows/**' + - "k8s-apps/**" + - ".gitea/workflows/**" pull_request: branches: - main paths: - - 'k8s-apps/**' - - '.gitea/workflows/**' + - "k8s-apps/**" + - ".gitea/workflows/**" jobs: preview: @@ -27,10 +27,10 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '24' + node-version: "24" - name: Restore Stack Config - run: echo "${{ secrets.K8S_APPS_DEV_YAML }}" | base64 -d > k8s-apps/Pulumi.dev.yaml + run: echo "${{ secrets.K8S_APPS_PULUMI_DEV_YAML }}" | base64 -d > 04-k8s-apps/Pulumi.dev.yaml - name: Install Dependencies run: npm install @@ -57,10 +57,10 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '24' + node-version: "24" - name: Restore Stack Config - run: echo "${{ secrets.K8S_APPS_DEV_YAML }}" | base64 -d > k8s-apps/Pulumi.dev.yaml + run: echo "${{ secrets.K8S_APPS_PULUMI_DEV_YAML }}" | base64 -d > 04-k8s-apps/Pulumi.dev.yaml - name: Install Dependencies run: npm install