From d3d384c685c3b4d60de9e01d7213b72d5d7c50ef Mon Sep 17 00:00:00 2001 From: Marcus Messer Date: Wed, 13 Aug 2025 17:12:42 +0100 Subject: [PATCH] Added mkdir to writing the licence --- .github/workflows/lambda_build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/lambda_build.yml b/.github/workflows/lambda_build.yml index 6d40d07..6d67b32 100644 --- a/.github/workflows/lambda_build.yml +++ b/.github/workflows/lambda_build.yml @@ -115,6 +115,7 @@ jobs: - name: Write license file if secret exists run: | if [ -n "${{ secrets.LICENSE }}" ]; then + mkdir dist/ echo "${{ secrets.LICENSE }}" > dist/LICENSE.txt echo "License file created at dist/LICENSE.txt" else