Skip to content

Commit

Permalink
add .wranglerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
eallend committed Feb 6, 2025
1 parent 9595551 commit c7a5639
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cf-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cache: "yarn"

- name: Install dependencies
run: HUSKY=0 yarn install
run: yarn install
env:
CI: true
HUSKY: 0
Expand Down
53 changes: 26 additions & 27 deletions .github/workflows/deploy-main.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
name: Deploy from main branch

on:
push:
branches:
# Commented out to deploy from main branch
#name: Deploy from main branch
#
#on:
# push:
# branches:
# - main
# - devel
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.husky/**'
- '.vscode/**'
- 'docs/**'
- 'jest/**'
- 'mocks/**'
- 'playwright/**'
- 'stubs/**'
- 'tools/**'
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
publish_image:
name: Publish Docker image
uses: './.github/workflows/publish-image.yml'
secrets: inherit
# paths-ignore:
# - '.github/ISSUE_TEMPLATE/**'
# - '.husky/**'
# - '.vscode/**'
# - 'docs/**'
# - 'jest/**'
# - 'mocks/**'
# - 'playwright/**'
# - 'stubs/**'
# - 'tools/**'
# workflow_dispatch:
#
#concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true
#
#jobs:
# publish_image:
# name: Publish Docker image
# uses: './.github/workflows/publish-image.yml'
# secrets: inherit
1 change: 1 addition & 0 deletions .wranglerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.next/cache

0 comments on commit c7a5639

Please sign in to comment.