File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 55
55
sed -i 's\myget_password\${{ secrets.MYGET_PASSWORD }}\" />\g' Nuget.Config
56
56
- name : Get OpenSilver version
57
57
run : |
58
- nuget install OpenSilver.Compatibility.TelerikUI.4.6 -source https://www.myget.org/F/opensilver-private/api/v3/index.json -source https://www.myget.org/F/opensilver/api/v3/index.json -source https://api.nuget.org/v3/index.json -version ${{ github.event.inputs.telerik-version }} -output TelerikInstall
58
+ nuget install OpenSilver.Compatibility.TelerikUI.4.6 -source https://www.myget.org/F/opensilver-private/api/v3/index.json -source https://www.myget.org/F/opensilver-private-rc/api/v3/index.json -source https://www.myget.org/F/opensilver /api/v3/index.json -source https://api.nuget.org/v3/index.json -version ${{ github.event.inputs.telerik-version }} -output TelerikInstall
59
59
ls TelerikInstall
60
60
$opensilver_version = ls TelerikInstall -Filter OpenSilver.1* | % { $_.name }
61
61
$opensilver_version = $opensilver_version.Split(".", 2)[1]
78
78
sed -i 's\USERNAME\${{ secrets.OPENSILVERDEMOSUSERNAME }}\g' OpenSilver.Samples.TelerikUI/OpenSilver.Samples.TelerikUI.Browser/Properties/PublishProfiles/publish.pubxml
79
79
- name : Build and Deploy
80
80
run : |
81
- msbuild OpenSilver.Samples.TelerikUI\OpenSilver.Samples.TelerikUI.Browser\OpenSilver.Samples.TelerikUI.Browser.csproj /p:DeployOnBuild=true /p:PublishProfile="OpenSilver.Samples.TelerikUI\OpenSilver.Samples.TelerikUI.Browser\Properties\PublishProfiles\publish.pubxml" /p:Password=${{ secrets.OPENSILVERDEMOSUSERPWD }} /p:DeployIisAppPath=${{ env.apath }} /p:MSDeployServiceURL=${{ env.deploy-service-url }} /p:Configuration=Release
81
+ msbuild OpenSilver.Samples.TelerikUI\OpenSilver.Samples.TelerikUI.Browser\OpenSilver.Samples.TelerikUI.Browser.csproj /p:DeployOnBuild=true /p:PublishProfile="OpenSilver.Samples.TelerikUI\OpenSilver.Samples.TelerikUI.Browser\Properties\PublishProfiles\publish.pubxml" /p:Password=${{ secrets.OPENSILVERDEMOSUSERPWD }} /p:DeployIisAppPath=${{ env.apath }} /p:MSDeployServiceURL=${{ env.deploy-service-url }} /p:Configuration=Release
Original file line number Diff line number Diff line change 9
9
<clear />
10
10
<add key =" MyGet OpenSilver Public" value =" https://www.myget.org/F/opensilver/api/v3/index.json" />
11
11
<add key =" MyGet" value =" https://www.myget.org/F/opensilver-private/api/v3/index.json" />
12
+ <add key =" MyGetRC" value =" https://www.myget.org/F/opensilver-private-rc/api/v3/index.json" />
12
13
<add key =" nuget.org" value =" https://api.nuget.org/v3/index.json" />
13
14
</packageSources >
14
15
<packageSourceCredentials >
15
16
<MyGet >
16
17
<add key =" Username" value =" myget_username" />
17
18
<add key =" ClearTextPassword" value =" myget_password" />
18
19
</MyGet >
20
+ <MyGetRC >
21
+ <add key =" Username" value =" myget_username" />
22
+ <add key =" ClearTextPassword" value =" myget_password" />
23
+ </MyGetRC >
19
24
<MyGetProxy >
20
25
<add key =" Username" value =" myget_username" />
21
26
<add key =" ClearTextPassword" value =" myget_password" />
You can’t perform that action at this time.
0 commit comments