Skip to content

Commit ab8471d

Browse files
committed
Don't require user interaction when building the dist target
1 parent c630dc0 commit ab8471d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ant.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
java-version: 1.8
1616
- name: Build with Ant
1717
working-directory: ./build
18-
run: ant clean dist
18+
run: |
19+
sed -i 's#<input .*/>##' build.xml
20+
ant clean dist
1921
- name: Run tests
2022
working-directory: ./app
2123
run: ant test

0 commit comments

Comments
 (0)