Skip to content

Commit

Permalink
chore(cd): added refined cf pages workflow (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
CorentinTh authored Sep 17, 2024
1 parent b919bcf commit 6936892
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/cd-app-prod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
on:
push:
branches:
- main

jobs:
publish-app:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Publish app to production
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
corepack: true
cache: 'pnpm'

- name: Install dependencies
run: pnpm i

- name: Build the app
run: pnpm -F @enclosed/deploy-cloudflare build

- name: Publish to Cloudflare Pages
uses: AdrianGonz97/refined-cf-pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: enclosed
workingDirectory: packages/deploy-cloudflare
directory: dist
deploymentName: Production
branch: main
wranglerVersion: '3'

publish-docs:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Publish docs to production
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
corepack: true
cache: 'pnpm'

- name: Install dependencies
run: pnpm i

- name: Build the app
run: pnpm -F @enclosed/docs build

- name: Publish to Cloudflare Pages
uses: AdrianGonz97/refined-cf-pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: enclosed-docs
workingDirectory: packages/docs
directory: dist
deploymentName: Production
branch: main
wranglerVersion: '3'

0 comments on commit 6936892

Please sign in to comment.