We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c34991 commit 8f663bfCopy full SHA for 8f663bf
.github/workflows/release.yml
@@ -154,8 +154,11 @@ jobs:
154
echo "===== Files in update-site/ AFTER COPY ====="
155
ls -lh .
156
157
- # Ensure large files are properly tracked by Git LFS
158
- git lfs track "plugins/*.jar"
+ # Dynamically track all .jar files in the plugins/ and features/ directories
+ find plugins -name "*.jar" -exec git lfs track {} +
159
+ find features -name "*.jar" -exec git lfs track {} +
160
+
161
+ # Ensure .gitattributes is added
162
git add .gitattributes
163
git add .
164
@@ -172,6 +175,7 @@ jobs:
172
175
git push origin ${{ env.GH_BRANCH_NAME }}
173
176
174
177
178
179
180
notify:
181
if: ${{ inputs.rbranch == '' || inputs.rbranch == null }}
0 commit comments