We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 407d99d commit 9595551Copy full SHA for 9595551
.github/workflows/cf-deploy.yml
@@ -4,8 +4,16 @@ on:
4
push:
5
branches:
6
- devel
7
- paths:
8
- - "**"
+ paths-ignore:
+ - '.github/ISSUE_TEMPLATE/**'
9
+ - '.husky/**'
10
+ - '.vscode/**'
11
+ - 'docs/**'
12
+ - 'jest/**'
13
+ - 'mocks/**'
14
+ - 'playwright/**'
15
+ - 'stubs/**'
16
+ - 'tools/**'
17
18
jobs:
19
deploy:
@@ -65,6 +73,8 @@ jobs:
65
73
cp package.json ./deploy/
66
74
cd ./deploy
67
75
yarn add wrangler@3 --dev
76
+ env:
77
+ HUSKY: 0
68
78
69
79
- name: Deploy to Cloudflare Pages
70
80
working-directory: ./deploy
.github/workflows/deploy-main.yml
@@ -3,8 +3,9 @@ name: Deploy from main branch
3
on:
- - main
- - devel
+# Commented out to deploy from main branch
+# - main
+# - devel
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.husky/**'
0 commit comments