This repository was archived by the owner on Dec 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +15
-7
lines changed
Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 88 workflow_call :
99
1010env :
11+ DOTNET_NOLOGO : true
12+ DOTNET_GENERATE_ASPNET_CERTIFICATE : false
13+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE : true
1114 PROJECT : ./src/Our.Umbraco.UiExamples/Our.Umbraco.UiExamples.csproj
1215 OUTPUT : ./dist
1316
Original file line number Diff line number Diff line change 33 tags :
44 - ' release-*'
55
6+ env :
7+ DOTNET_NOLOGO : true
8+ DOTNET_GENERATE_ASPNET_CERTIFICATE : false
9+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE : true
10+
611jobs :
712 build :
813 name : Build
@@ -25,14 +30,14 @@ jobs:
2530 - name : Get Umbraco package file name
2631 run : |
2732 $packageFile = Get-Item *.zip | Select-Object -First 1 -ExpandProperty Name
28- echo "packageFile =$packageFile" >> $GITHUB_ENV
33+ echo "OURUMBRACO_PACKAGE =$packageFile" >> $GITHUB_ENV
2934
30- - name : Push to Our Umbraco
31- run : umbpack push "$env:packageFile " -k "$env:apiKey" -a *
35+ - name : Push to Our. Umbraco
36+ run : umbpack push "${{ env.OURUMBRACO_PACKAGE}} " -k "$env:apiKey" -a *
3237 env :
33- apiKey : ${{ secrets.OURUMBRACO_API_KEY }}
38+ apiKey : ${{secrets.OURUMBRACO_API_KEY}}
3439
3540 - name : Push to NuGet
36- run : dotnet nuget push "*.nupkg" --source https://api.nuget.org/v3/index.json -- api-key "$env:apiKey" --skip-duplicate
41+ run : dotnet nuget push "*.nupkg" --api-key "$env:apiKey" --skip-duplicate
3742 env :
38- apiKey : ${{ secrets.NUGET_API_KEY }}
43+ apiKey : ${{secrets.NUGET_API_KEY}}
Original file line number Diff line number Diff line change 66 },
77 "publicReleaseRefSpec" : [
88 " ^refs/heads/master$" ,
9- " ^refs/heads/release/ \\ d+(\\ .\\ d+)?(\\ .\\ d+)?$"
9+ " ^refs/heads/release- \\ d+(\\ .\\ d+)?(\\ .\\ d+)?$"
1010 ],
1111 "cloudBuild" : {
1212 "buildNumber" : {
You can’t perform that action at this time.
0 commit comments