From b9ffffa6da6280b2c0f259193cdcc7deaf55fb29 Mon Sep 17 00:00:00 2001 From: Titus Kirch Date: Sat, 11 May 2024 16:57:44 +0200 Subject: [PATCH] Merge dev to main (#90) * feat(ci): add branch argument for deploying "APP" to Cloudflare Pages (#85) * feat(ci): remove dev code/add pre dev code (#87) * fix(ci): add missing dollar symbol (#89) --- .github/workflows/ci-cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 4ff2b96a..d057c1d7 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -566,7 +566,7 @@ jobs: accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} workingDirectory: "apps/blog/" - command: pages deploy dist/ --project-name ${{ secrets.CLOUDFLARE_PAGES_PROJECT_NAME_APP_BLOG }}{{ github.event_name == 'release' && !github.event.release.prerelease && ' --branch=production' || '' }} + command: pages deploy dist/ --project-name ${{ secrets.CLOUDFLARE_PAGES_PROJECT_NAME_APP_BLOG }}${{ github.event_name == 'release' && !github.event.release.prerelease && ' --branch=production' || '' }} packageManager: pnpm cloudflare-pages-deploy-app-web: @@ -607,5 +607,5 @@ jobs: accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} workingDirectory: "apps/web/" - command: pages deploy dist/ --project-name ${{ secrets.CLOUDFLARE_PAGES_PROJECT_NAME_APP_WEB }}{{ github.event_name == 'release' && !github.event.release.prerelease && ' --branch=production' || '' }} + command: pages deploy dist/ --project-name ${{ secrets.CLOUDFLARE_PAGES_PROJECT_NAME_APP_WEB }}${{ github.event_name == 'release' && !github.event.release.prerelease && ' --branch=production' || '' }} packageManager: pnpm \ No newline at end of file