Skip to content

Commit

Permalink
Merge dev to main (#90)
Browse files Browse the repository at this point in the history
* 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)
  • Loading branch information
TitusKirch committed May 11, 2024
1 parent 0bc2f15 commit b9ffffa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

0 comments on commit b9ffffa

Please sign in to comment.