Skip to content

Commit b2898be

Browse files
committed
fix CI: exclude lite.lex from test artifact to avoid SNAPSHOT Maven resolution
The lite.lex omits bundled Maven deps, causing Lucee to fetch org.lucee:ehcache:*-SNAPSHOT from remote repos — which fails because no snapshot-capable repo is configured. Upload only the full .lex so all deps are bundled and no network resolution is needed during tests.
1 parent 31389ea commit b2898be

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040
uses: actions/upload-artifact@v7
4141
with:
4242
name: ehcache-lex
43-
path: target/*.lex
43+
path: |
44+
target/*.lex
45+
!target/*.lite.lex
4446
4547
test:
4648
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)