Skip to content

Commit f749f4d

Browse files
committed
Use expr
1 parent ef85212 commit f749f4d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/end-to-end-tests.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ workflow(
206206
// TODO: fix in https://github.com/typesafegithub/github-workflows-kt/issues/1956
207207
command = """
208208
cat << EOF > actual
209-
$GREETING-$FIRST_NAME
209+
${ expr { "$GREETING-$FIRST_NAME" } }
210210
EOF
211211
212212
cat << EOF > expected

.github/workflows/end-to-end-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
FIRST_NAME: 'Patrick'
125125
run: |-
126126
cat << EOF > actual
127-
env.GREETING-env.FIRST_NAME
127+
${{ env.GREETING-env.FIRST_NAME }}
128128
EOF
129129
130130
cat << EOF > expected

0 commit comments

Comments
 (0)