From c24092f4c4e74017397e3c7676207bfcb3b1b000 Mon Sep 17 00:00:00 2001 From: Dominick Leppich <dominick.leppich@intranda.com> Date: Tue, 3 Dec 2024 15:18:14 +0100 Subject: [PATCH] fix: vocabulary init script archive folder name --- .github/workflows/release-build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 6a309d0..81ad3ac 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -31,10 +31,12 @@ jobs: uses: montudor/action-zip@v1 with: args: zip -qq -r migration-tool.zip migration - - name: Create ZIP archive for setup scripts + - name: Rename vocabulary init script folder + run: mv install vocabulary-init-script + - name: Create ZIP archive for vocabulary init script uses: montudor/action-zip@v1 with: - args: zip -qq -r vocabulary-init-script.zip install + args: zip -qq -r vocabulary-init-script.zip vocabulary-init-script - name: Release id: create_release uses: softprops/action-gh-release@v2