Skip to content

Commit 83c02b1

Browse files
Added rc url (OpenSilver#7)
1 parent 5fc30aa commit 83c02b1

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/build-telerik-showcase.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
sed -i 's\myget_password\${{ secrets.MYGET_PASSWORD }}\" />\g' Nuget.Config
5656
- name: Get OpenSilver version
5757
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
5959
ls TelerikInstall
6060
$opensilver_version = ls TelerikInstall -Filter OpenSilver.1* | % { $_.name }
6161
$opensilver_version = $opensilver_version.Split(".", 2)[1]
@@ -78,4 +78,4 @@ jobs:
7878
sed -i 's\USERNAME\${{ secrets.OPENSILVERDEMOSUSERNAME }}\g' OpenSilver.Samples.TelerikUI/OpenSilver.Samples.TelerikUI.Browser/Properties/PublishProfiles/publish.pubxml
7979
- name: Build and Deploy
8080
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

Nuget.default.Config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,18 @@
99
<clear />
1010
<add key="MyGet OpenSilver Public" value="https://www.myget.org/F/opensilver/api/v3/index.json" />
1111
<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" />
1213
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
1314
</packageSources>
1415
<packageSourceCredentials>
1516
<MyGet>
1617
<add key="Username" value="myget_username" />
1718
<add key="ClearTextPassword" value="myget_password" />
1819
</MyGet>
20+
<MyGetRC>
21+
<add key="Username" value="myget_username" />
22+
<add key="ClearTextPassword" value="myget_password" />
23+
</MyGetRC>
1924
<MyGetProxy>
2025
<add key="Username" value="myget_username" />
2126
<add key="ClearTextPassword" value="myget_password" />

0 commit comments

Comments
 (0)