From 7771a24b9ce55751253686885e4848a292817a38 Mon Sep 17 00:00:00 2001 From: dc Date: Tue, 22 Sep 2026 09:10:43 +0000 Subject: [PATCH] fix(release): put frontend files at the root of frontend.zip The release job zipped ./client/dist, so every archive entry carried a client/dist/ prefix and an unzip dropped the app into a client/dist subfolder. Zip from inside dist instead, so index.html, assets and the bundled viya.json sit at the root of the archive. Closes #147 --- .gitea/workflows/release.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 4b42727..1453318 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -302,8 +302,10 @@ jobs: run: | cd sas cp sasjsbuild/viya.json ../client/dist/viya.json - cd .. - zip -r frontend.zip ./client/dist + # Zip from *inside* dist so the archive holds the frontend files at its + # root rather than under a client/dist/ prefix (see #147). + cd ../client/dist + zip -r ../../frontend.zip . - name: Release Typedoc run: |