Skip to content

Commit 8f663bf

Browse files
Update site with all files (AST-000)
1 parent 4c34991 commit 8f663bf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,11 @@ jobs:
154154
echo "===== Files in update-site/ AFTER COPY ====="
155155
ls -lh .
156156
157-
# Ensure large files are properly tracked by Git LFS
158-
git lfs track "plugins/*.jar"
157+
# Dynamically track all .jar files in the plugins/ and features/ directories
158+
find plugins -name "*.jar" -exec git lfs track {} +
159+
find features -name "*.jar" -exec git lfs track {} +
160+
161+
# Ensure .gitattributes is added
159162
git add .gitattributes
160163
git add .
161164
@@ -172,6 +175,7 @@ jobs:
172175
git push origin ${{ env.GH_BRANCH_NAME }}
173176
174177

178+
175179

176180
notify:
177181
if: ${{ inputs.rbranch == '' || inputs.rbranch == null }}

0 commit comments

Comments
 (0)