diff --git a/.github/workflows/request.yml b/.github/workflows/request.yml index efeea14..1a94b21 100644 --- a/.github/workflows/request.yml +++ b/.github/workflows/request.yml @@ -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 diff --git a/request-manual-activation-file/entrypoint.sh b/request-manual-activation-file/entrypoint.sh index b42ece3..aa66cc6 100644 --- a/request-manual-activation-file/entrypoint.sh +++ b/request-manual-activation-file/entrypoint.sh @@ -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)