From cf22d0eb0d8a1798aa255fb3526ca7597c83596e Mon Sep 17 00:00:00 2001 From: Dominick Leppich Date: Tue, 3 Dec 2024 15:10:58 +0100 Subject: [PATCH] fix: vocabulary init script archive folder name --- .github/workflows/develop-build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/develop-build.yml b/.github/workflows/develop-build.yml index aaa92f2..bbc26bc 100644 --- a/.github/workflows/develop-build.yml +++ b/.github/workflows/develop-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: Get current date id: date run: echo "::set-output name=date::$(date +'%Y-%m-%d %H:%M:%S %Z')"