From 399498d0eaad216cf4f2252db372227e6382f4cf Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Wed, 23 Oct 2024 08:54:20 -0500 Subject: [PATCH] CLDR-17918 build: actual build --- .github/workflows/build-json.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/build-json.yml b/.github/workflows/build-json.yml index 821291ebff..13ad66b5ee 100644 --- a/.github/workflows/build-json.yml +++ b/.github/workflows/build-json.yml @@ -79,5 +79,32 @@ jobs: with: name: cldr-identity path: ./cldr-identity.txt + - name: Build JSON + run: | + cd cldr-json + echo "::group::Cleanup" + rm -rf cldr-json + echo "::endgroup::" + echo "::group::Build" + bash cldr-generate-json.sh + echo "::endgroup::" + echo "::group::Status" + git status || true + echo "::endgroup::" + echo "::group::Zip" + bash cldr-generate-zip.sh + cp PACKAGES.md dist/ + echo "::endgroup::" + - name: Upload dist + uses: actions/upload-artifact@v4 + with: + name: cldr-json + path: ./cldr-json/dist + - name: Upload dist + uses: actions/upload-artifact@v4 + with: + name: cldr-json + path: ./cldr-json/dist +