We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9af497d commit 3cc7c96Copy full SHA for 3cc7c96
.github/actions/test/action.yml
@@ -19,7 +19,7 @@ runs:
19
shell: bash
20
run: npx nx affected:lint --base=last-release --exclude=website
21
22
- - name: Build Headless
+ - name: Build Headless Kit
23
24
run: npx nx build headless
25
.github/workflows/website.yml
@@ -0,0 +1,20 @@
1
+name: Website Deploy
2
+
3
+on:
4
+ - workflow_dispatch
5
6
+jobs:
7
+ deploy:
8
+ runs-on: ubuntu-latest
9
10
+ if: github.ref == 'refs/heads/main'
11
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Setup
15
+ uses: ./.github/actions/setup
16
+ - name: Deploy
17
+ env:
18
+ CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
+ shell: bash
+ run: CLOUDFLARE_API_TOKEN=${{ secrets.CLOUDFLARE_API_TOKEN }} npx nx deploy website
0 commit comments