File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 42
42
run : dotnet nuget add source 'https://pkgs.dev.azure.com/e-LfH/_packaging/LearningHubFeed/nuget/v3/index.json' --name 'LearningHubFeed' --username 'kevin.whittaker' --password ${{ secrets.AZUREDEVOPSKEY }} --store-password-in-clear-text
43
43
44
44
- name : Add github registry
45
- run : dotnet nuget add source --username 'kevin.whittaker' --password ${{ secrets.NUGETAPIKEY }} --store-password-in-clear-text --name githubPackages "https://nuget.pkg.github.com/TechnologyEnhancedLearning/index.json"
45
+ run : dotnet nuget add source --username 'kevin.whittaker' --password ${{ secrets.NUGETKEY }} --store-password-in-clear-text --name githubPackages "https://nuget.pkg.github.com/TechnologyEnhancedLearning/index.json"
46
46
47
47
- name : Dotnet build
48
48
run : dotnet build NHSUKViewComponents.sln --configuration release
52
52
53
53
- name : Push generated package to GitHub registry
54
54
if : startsWith(github.ref, 'refs/tags/v')
55
- run : dotnet nuget push ./package/*.nupkg --api-key ${{ secrets.NUGETAPIKEY }} --source "githubPackages" --skip-duplicate
55
+ run : dotnet nuget push ./package/*.nupkg --api-key ${{ secrets.NUGETKEY }} --source "githubPackages" --skip-duplicate
56
56
57
57
- name : Push generated package to Azure Feed
58
58
if : startsWith(github.ref, 'refs/tags/v')
You can’t perform that action at this time.
0 commit comments