Skip to content

Commit

Permalink
prefix for GITHUB_OUTPUT because Powershell commands need it
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsathiya committed Jan 23, 2024
1 parent 57b7af6 commit 53870cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ jobs:
run: |
$nugetPackage = (get-item "$($env:release_path)\*.nupkg").FullName
$nugetPackageName = (get-item "$($env:release_path)\*.nupkg").Name
echo "nuget_package=$nugetPackage" >> $GITHUB_OUTPUT
echo "nuget_package_name=$nugetPackageName" >> $GITHUB_OUTPUT
echo "nuget_package=$nugetPackage" >> $env:GITHUB_OUTPUT
echo "nuget_package_name=$nugetPackageName" >> $env:GITHUB_OUTPUT
- name: prepare release asset
shell: powershell
id: prepare_release_asset
Expand All @@ -120,7 +120,7 @@ jobs:
compress-archive -path "$($env:release_path)_upload\*" -destinationPath "$($env:release_path)\$($env:project_name).zip" -force
$fileVersion = [io.fileinfo]::new("$($releaseFramework)\$($env:project_name).exe").VersionInfo.FileVersion
echo "::log-command parameter1=$fileVersion::fileVersion"
echo "file_version=v$fileVersion" >> $GITHUB_OUTPUT
echo "file_version=v$fileVersion" >> $env:GITHUB_OUTPUT
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 53870cc

Please sign in to comment.