Skip to content

Commit 9d0be1f

Browse files
committed
Fix variable name issues.
1 parent 4c95c7e commit 9d0be1f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ if $INPUT_GENERATE_ZIP; then
159159
echo "Generating zip file..."
160160

161161
# use a symbolic link so the directory in the zip matches the slug
162-
ln -s "${SVN_DIR}/trunk" "{$SVN_DIR}/${SLUG}"
162+
ln -s "${SVN_DIR}/trunk" "${SVN_DIR}/${SLUG}"
163163
zip -r "${GITHUB_WORKSPACE}/${SLUG}.zip" "$SLUG"
164-
unlink "{$SVN_DIR}/${SLUG}"
164+
unlink "${SVN_DIR}/${SLUG}"
165165

166166
echo "zip-path=${GITHUB_WORKSPACE}/${SLUG}.zip" >> "${GITHUB_OUTPUT}"
167167
echo "✓ Zip file generated!"

0 commit comments

Comments
 (0)