From b9f0acfcc25c95598fa6bc7bfddfb0ac1706ab4d Mon Sep 17 00:00:00 2001 From: Eric Wittmann Date: Tue, 16 Jul 2024 13:47:37 -0400 Subject: [PATCH] Add the typescript sdk to the release workflow --- .github/workflows/release.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 84403bb0a7..bb2914d7a3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -88,6 +88,14 @@ jobs: cd registry ./mvnw -T 1.5C clean install --no-transfer-progress -Pprod -DskipTests=true -DskipCommitIdPlugin=false -Dmaven.wagon.httpconnectionManager.maxTotal=30 -Dmaven.wagon.http.retryHandler.count=5 + - name: Build the typescript-sdk + run: | + cd registry/typescript-sdk + npm install + npm run generate-registry-sdk + npm run lint + npm run build + - name: Build Registry UI run: | cd registry/ui