File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,15 +24,15 @@ jobs:
24
24
with :
25
25
dotnet-version : 8.0.x
26
26
- name : Rename executable for beta
27
- if : contains('${{ github.ref_name }}' , '-beta')
27
+ if : contains(github.ref_name, '-beta')
28
28
run : |
29
29
pushd
30
30
cd ./dev-proxy
31
31
$content = Get-Content dev-proxy.csproj
32
32
$content -replace '<AssemblyName>devproxy</AssemblyName>', '<AssemblyName>devproxy-beta</AssemblyName>' | Set-Content dev-proxy.csproj
33
33
popd
34
34
- name : Set newVersionNotification for beta
35
- if : contains('${{ github.ref_name }}' , '-beta')
35
+ if : contains(github.ref_name, '-beta')
36
36
run : |
37
37
pushd
38
38
cd ./dev-proxy
86
86
if : contains(matrix.architecture, 'win-')
87
87
run : cp ./media/icon.ico ./${{ env.release }}
88
88
- name : Update version in beta installer
89
- if : contains(matrix.architecture, 'win-') && contains('${{ github.ref_name }}' , '-beta')
89
+ if : contains(matrix.architecture, 'win-') && contains(github.ref_name, '-beta')
90
90
run : |
91
91
$content = Get-Content ./install-beta.iss
92
92
$content -replace '#define MyAppVersion .*', "#define MyAppVersion `"$("${{ github.ref_name }}".Substring(1))`"" | Set-Content ./install-beta.iss
You can’t perform that action at this time.
0 commit comments