Skip to content

Commit 7795789

Browse files
committed
Added lfs
1 parent 9fc5ada commit 7795789

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ on:
4949
description: "Used for prod: The branch to deploy"
5050
required: false
5151
default: "main"
52+
lfs:
53+
type: boolean
54+
description: "Support git LFS"
55+
default: false
56+
required: false
5257
secrets:
5358
aws-key-id:
5459
description: "The AWS access key ID"
@@ -82,6 +87,7 @@ jobs:
8287
uses: actions/checkout@v4
8388
with:
8489
fetch-depth: 0
90+
lfs: ${{inputs.lfs}}
8591

8692
- name: Set up boilerplate config.json
8793
if: github.repository == inputs.template-repository-name
@@ -158,6 +164,7 @@ jobs:
158164
build-target: ${{ inputs.build-target }}
159165
build-args: ${{inputs.build-args}}
160166
build-platforms: ${{inputs.build-platforms}}
167+
lfs: ${{inputs.lfs}}
161168
secrets:
162169
aws-key-id: ${{ secrets.aws-key-id }}
163170
aws-secret-key: ${{ secrets.aws-secret-key }}
@@ -180,6 +187,7 @@ jobs:
180187
build-platforms: ${{inputs.build-platforms}}
181188
version-bump: ${{inputs.version-bump}}
182189
branch: ${{inputs.branch}}
190+
lfs: ${{inputs.lfs}}
183191
secrets:
184192
aws-key-id: ${{ secrets.aws-key-id }}
185193
aws-secret-key: ${{ secrets.aws-secret-key }}

0 commit comments

Comments
 (0)