From 182810efa72a84687e45dd68510ac5ec11807410 Mon Sep 17 00:00:00 2001 From: Webber Takken Date: Sat, 23 Nov 2019 15:06:21 +0100 Subject: [PATCH] Fix unescaped variable --- .github/workflows/request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/request.yml b/.github/workflows/request.yml index 290b232..efeea14 100644 --- a/.github/workflows/request.yml +++ b/.github/workflows/request.yml @@ -30,7 +30,7 @@ jobs: # Save output from variable as ManualActivationFile.alf - name: Save variable as file - run: echo ${{ steps.getManualLicenseFile.outputs.activationFile }} > ManualActivationFile.alf + run: printf "%s" "${{ steps.getManualLicenseFile.outputs.activationFile }}" > ManualActivationFile.alf # Upload artifact - name: Expose as artifact (Strategy 1)