We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d384c commit f619c1cCopy full SHA for f619c1c
.github/workflows/lambda_build.yml
@@ -115,9 +115,10 @@ jobs:
115
- name: Write license file if secret exists
116
run: |
117
if [ -n "${{ secrets.LICENSE }}" ]; then
118
- mkdir dist/
119
- echo "${{ secrets.LICENSE }}" > dist/LICENSE.txt
120
- echo "License file created at dist/LICENSE.txt"
+ mkdir ./dist/
+ echo "${{ secrets.LICENSE }}" > ./dist/LICENSE.txt
+ echo "License file created at ./dist/LICENSE.txt"
121
+ ls ./dist
122
else
123
echo "LICENSE_TEXT secret not provided. Skipping license file creation."
124
fi
0 commit comments