Skip to content

Commit 9595551

Browse files
committed
add HUSKY=0 to other job
1 parent 407d99d commit 9595551

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.github/workflows/cf-deploy.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ on:
44
push:
55
branches:
66
- devel
7-
paths:
8-
- "**"
7+
paths-ignore:
8+
- '.github/ISSUE_TEMPLATE/**'
9+
- '.husky/**'
10+
- '.vscode/**'
11+
- 'docs/**'
12+
- 'jest/**'
13+
- 'mocks/**'
14+
- 'playwright/**'
15+
- 'stubs/**'
16+
- 'tools/**'
917

1018
jobs:
1119
deploy:
@@ -65,6 +73,8 @@ jobs:
6573
cp package.json ./deploy/
6674
cd ./deploy
6775
yarn add wrangler@3 --dev
76+
env:
77+
HUSKY: 0
6878

6979
- name: Deploy to Cloudflare Pages
7080
working-directory: ./deploy

.github/workflows/deploy-main.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ name: Deploy from main branch
33
on:
44
push:
55
branches:
6-
- main
7-
- devel
6+
# Commented out to deploy from main branch
7+
# - main
8+
# - devel
89
paths-ignore:
910
- '.github/ISSUE_TEMPLATE/**'
1011
- '.husky/**'

0 commit comments

Comments
 (0)