Remove quotes in an attempt to not strip quotes

This commit is contained in:
Webber
2019-11-24 17:56:02 +01:00
committed by Webber Takken
parent 182810efa7
commit 34352bdba5
2 changed files with 4 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ jobs:
run: printf "%s" "${{ steps.getManualLicenseFile.outputs.activationFile }}" > ManualActivationFile.alf
# Upload artifact
- name: Expose as artifact (Strategy 1)
- name: Expose as artifact (Strategy 1 - by passed variable)
uses: actions/upload-artifact@v1
with:
name: ManualActivationFile.alf
@@ -44,7 +44,7 @@ jobs:
##
# Upload artifact
- name: Expose as artifact (Strategy 2 - variable)
- name: Expose as artifact (Strategy 2 - by copied file)
uses: actions/upload-artifact@v1
with:
name: Unity_v${{ matrix.unity-tag }}.alf

View File

@@ -12,8 +12,9 @@ xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' \
# Output the resulting file as an output variable (Strategy 1)
ACTIVATION_FILE=$(cat Unity_v2019.2.11f1.alf)
echo $ACTIVATION_FILE
echo "Use this file for manual activation and add it to \$UNITY_LICENSE variabe."
echo "::add-mask::$ACTIVATION_FILE"
#echo "::add-mask::$ACTIVATION_FILE"
echo "::set-output name=activationFile::$ACTIVATION_FILE"
# Output the resulting file by copying (Strategy 2)