From 368183692b7932afd8e525cd277725a9c13b41c4 Mon Sep 17 00:00:00 2001 From: Duncan Paterson Date: Thu, 11 Apr 2024 23:23:32 +0200 Subject: [PATCH] Update build.yml Co-authored-by: Joe Wicentowski --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cec9ce86f..29adf5551 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,8 +33,7 @@ jobs: # TODO(DP) Validate ? - name: Ensure all XML files are well-formed run: | - xmllint --noout \ - $(find . -type f -name '*.xml') + find . -type f -name '*.xml' -print0 | xargs -0 xmllint -noout # Build - name: Setup Node.js @@ -48,7 +47,7 @@ jobs: with: distribution: 'temurin' java-version: ${{ matrix.java-version }} - - run: -Dapp.version=1.0.0-SNAPSHOT + - run: ant -Dapp.version=1.0.0-SNAPSHOT - name: Add expath dependencies working-directory: build