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.
2 parents fc48387 + 975e2a0 commit ff16658Copy full SHA for ff16658
.github/workflows/main.yml
@@ -0,0 +1,13 @@
1
+---
2
+on:
3
+ - push
4
+ - pull_request
5
+
6
+jobs:
7
+ shellcheck:
8
+ name: ShellCheck
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Run ShellCheck
13
+ uses: bewuethr/shellcheck-action@v2
src/deploy-config.sh
@@ -16,7 +16,7 @@ else
16
exit 2
17
fi
18
19
-encodedConfigContent=$(base64 $nginxConfigurationFile)
+encodedConfigContent=$(base64 "$nginxConfigurationFile")
20
echo "Base64 encoded NGINX configuration content"
21
echo "$encodedConfigContent"
22
echo ""
0 commit comments