Skip to content

Commit b56182d

Browse files
committed
test workflow
1 parent 1647159 commit b56182d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,13 +256,12 @@ jobs:
256256
# echo "ARTIFACTS_BUCKET=${ARTIFACTS_BUCKET}"
257257
# Deploy Application Code to AWS -- > TODO ARTIFACTS_BUCKET_NAME and NAMESPACE values are hardcoded as -raw flag or jq are throwing errors
258258
- name: Deploy Application Code
259-
env:
260-
ARTIFACTS_BUCKET: ${{ env.ARTIFACTS_BUCKET }}
261259
run: |
262260
263261
echo "Running terraform output for artifacts_bucket_name"
264262
ARTIFACTS_BUCKET=$(cd modules && terraform output artifacts_bucket_name | tr -d '"') # Remove quotes and newlines
265263
ARTIFACTS_BUCKET_OUTPUT=$(echo "ARTIFACTS_BUCKET=${ARTIFACTS_BUCKET}")
264+
echo "ARTIFACTS_BUCKET_OUTPUT=${ARTIFACTS_BUCKET_OUTPUT}" >> $GITHUB_ENV
266265
# echo "ARTIFACTS_BUCKET_OUTPUT=${ARTIFACTS_BUCKET_OUTPUT}" >> $GITHUB_ENV
267266
268267
echo "Starting to print the artifacts bucket name 3"
@@ -278,7 +277,7 @@ jobs:
278277
./scripts/deploy.sh \
279278
/home/runner/work/dce/dce/bin/build_artifacts.zip \
280279
cd\
281-
${ARTIFACTS_BUCKET_OUTPUT}
280+
"${ARTIFACTS_BUCKET_OUTPUT}"
282281
283282
# Functional Tests --> TODO need to fix the test failures
284283
# - name: Functional Tests

0 commit comments

Comments
 (0)