We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c02b9d commit 1074100Copy full SHA for 1074100
.github/workflows/v2_Release.yml
@@ -25,8 +25,8 @@ jobs:
25
# create the copyright text
26
$copyright = "Copyright " + [char]0x00A9 + " Umbraco " + (Get-Date).year
27
Write-Verbose "Copyright set to $copyright" -Verbose
28
- # set global var
29
- Write-Output "::set-env name=copyright::$copyright"
+ # Write env var
+ echo "copyright=$copyright" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
30
$AssemblyInfoPath = Join-Path -Path $Env:GITHUB_WORKSPACE -ChildPath "src\UmbracoExamine.PDF\Properties\AssemblyInfo.cs"
31
# Set the copyright
32
(gc -Path $AssemblyInfoPath) `
0 commit comments