From f619c1c018172bf74c76430aece104be0dc088ff Mon Sep 17 00:00:00 2001 From: Marcus Messer Date: Wed, 13 Aug 2025 17:15:36 +0100 Subject: [PATCH] Changed path for writing licence file --- .github/workflows/lambda_build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lambda_build.yml b/.github/workflows/lambda_build.yml index 6d67b32..bda50e8 100644 --- a/.github/workflows/lambda_build.yml +++ b/.github/workflows/lambda_build.yml @@ -115,9 +115,10 @@ 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" + mkdir ./dist/ + echo "${{ secrets.LICENSE }}" > ./dist/LICENSE.txt + echo "License file created at ./dist/LICENSE.txt" + ls ./dist else echo "LICENSE_TEXT secret not provided. Skipping license file creation." fi