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 f902d5b commit cb343deCopy full SHA for cb343de
2 files changed
.env
@@ -7,7 +7,7 @@ HANDLERS_TO_BUILD=basic-lambda
7
HANDLER=basic-lambda
8
9
# Output directory for built binaries
10
-OUTPUT_DIR="/tmp/var-task"
+OUTPUT_DIR=/tmp/var-task
11
12
# Max concurrent Lambda invocations for LMI mode
13
RIE_MAX_CONCURRENCY=4
.github/workflows/dockerized-test.yml
@@ -26,7 +26,9 @@ jobs:
26
- name: Load environment variables
27
run: |
28
if [ -f .env ]; then
29
- export $(cat .env | grep -v '^#' | xargs)
+ set -a
30
+ source .env
31
+ set +a
32
echo "HANDLERS_TO_BUILD=${HANDLERS_TO_BUILD}" >> $GITHUB_ENV
33
echo "OUTPUT_DIR=${OUTPUT_DIR}" >> $GITHUB_ENV
34
fi
0 commit comments