From 02aac24c7fb3912921b5bc1ed83136a329941be4 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Tue, 2 Feb 2021 20:12:43 +0300 Subject: [PATCH] Escape try. --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index fc95a07..8586ff9 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -89,7 +89,7 @@ runs: (defun main (args) (declare (ignorable args)) (format t "::group::Custom Roswell Script New 2~%") - (let ((custom-code "${{ inputs.custom-code }}")) + (let ((custom-code "${{ inputs.custom-code | escape }}")) (if (string= custom-code "") (format t "No custom code~%") (uiop:eval-input custom-code))