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