mirror of
https://github.com/game-ci/unity-actions.git
synced 2026-01-29 04:39:07 +08:00
Remove quotes in an attempt to not strip quotes
This commit is contained in:
4
.github/workflows/request.yml
vendored
4
.github/workflows/request.yml
vendored
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user