Skip to content

Commit f619c1c

Browse files
committed
Changed path for writing licence file
1 parent d3d384c commit f619c1c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/lambda_build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,10 @@ jobs:
115115
- name: Write license file if secret exists
116116
run: |
117117
if [ -n "${{ secrets.LICENSE }}" ]; then
118-
mkdir dist/
119-
echo "${{ secrets.LICENSE }}" > dist/LICENSE.txt
120-
echo "License file created at dist/LICENSE.txt"
118+
mkdir ./dist/
119+
echo "${{ secrets.LICENSE }}" > ./dist/LICENSE.txt
120+
echo "License file created at ./dist/LICENSE.txt"
121+
ls ./dist
121122
else
122123
echo "LICENSE_TEXT secret not provided. Skipping license file creation."
123124
fi

0 commit comments

Comments
 (0)