Skip to content

Commit 18c7bb3

Browse files
committed
Don't use symlinks
it's unclear how this works with cloud backends
1 parent bcc0e13 commit 18c7bb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

image/actions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ function create-auto-tfvars() {
416416
if [[ -n "${INPUT_VARIABLES:-}" ]]; then
417417
debug_log "Creating autoloading tfvars file for the variables input: zzzz-dflook-terraform-github-actions-$AUTO_TFVARS_COUNTER.auto.tfvars"
418418
echo "$INPUT_VARIABLES" >"$STEP_TMP_DIR/zzzz-dflook-terraform-github-actions-$AUTO_TFVARS_COUNTER.auto.tfvars"
419-
ln -s "$STEP_TMP_DIR/zzzz-dflook-terraform-github-actions-$AUTO_TFVARS_COUNTER.auto.tfvars" "$INPUT_PATH/zzzz-dflook-terraform-github-actions-$AUTO_TFVARS_COUNTER.auto.tfvars"
419+
cp "$STEP_TMP_DIR/zzzz-dflook-terraform-github-actions-$AUTO_TFVARS_COUNTER.auto.tfvars" "$INPUT_PATH/zzzz-dflook-terraform-github-actions-$AUTO_TFVARS_COUNTER.auto.tfvars"
420420
fi
421421
}
422422

0 commit comments

Comments
 (0)