You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ By default, the action does not need any token configuration and uses the provid
113
113
| `single-commit` | This option can be toggled to `true` if you'd prefer to have a single commit on the deployment branch instead of maintaining the full history. **Using this option will also cause any existing history to be wiped from the deployment branch**. | `with` | **No** |
114
114
| `force` | Force-push new deployments to overwrite the previous version; otherwise, attempt to rebase new deployments onto any existing ones. This option is turned on by default and can be toggled off by setting it to `false`, which may be useful if there are multiple deployments in a single branch. | `with` | **No** |
115
115
| `attempt-limit` | How many rebase attempts to make before suspending the job. This option defaults to `3` and may be useful to increase when there are multiple deployments in a single branch. | `with` | **No** |
116
-
| `git-lfs` | Enable Git Large File Storage (LFS) support for handling large files. This should be set to `true` if your deployment folder contains files tracked by Git LFS. Defaults to `false`. | `with` | **No** |
116
+
| `lfs` | Enable Git Large File Storage (LFS) support for handling large files. This should be set to `true` if your deployment folder contains files tracked by Git LFS. Defaults to `false`. | `with` | **No** |
117
117
| `silent` | Silences the action output preventing it from displaying git messages. | `with` | **No** |
118
118
| `tag` | Add a tag to the commit. Only works when `dry-run` is not used. | `with` | **No** |
119
119
@@ -135,17 +135,17 @@ This value is also set as a step output as `deployment-status`.
135
135
136
136
### Using Git Large File Storage (LFS) 📦
137
137
138
-
If your project contains files larger than 100MB, you'll need to use [Git Large File Storage (LFS)](https://git-lfs.github.com/) to avoid GitHub's file size limits. This action supports LFS files when the `git-lfs` input is set to `true`.
138
+
If your project contains files larger than 100MB, you'll need to use [Git Large File Storage (LFS)](https://git-lfs.github.com/) to avoid GitHub's file size limits. This action supports LFS files when the `lfs` input is set to `true`.
139
139
140
140
```yml
141
141
- name: Deploy to GitHub Pages
142
142
uses: JamesIves/github-pages-deploy-action@v4
143
143
with:
144
144
folder: build
145
-
git-lfs: true
145
+
lfs: true
146
146
```
147
147
148
-
When `git-lfs` is enabled, the action will:
148
+
When `lfs` is enabled, the action will:
149
149
1. Install and configure Git LFS in the deployment environment
150
150
2. Properly handle LFS pointer files during the deployment process
151
151
3. Ensure large files are correctly pushed to GitHub Pages
Copy file name to clipboardExpand all lines: action.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ inputs:
95
95
required: false
96
96
default: 3
97
97
98
-
git-lfs:
98
+
lfs:
99
99
description: 'Enable Git Large File Storage (LFS) support for handling large files. This should be set to true if your deployment folder contains files tracked by Git LFS.'
0 commit comments