Status | |
---|---|
Build | |
CodeQL |
#digital-is-jh-sample
Status | |
---|---|
Build | |
Unit Tests | |
CodeQL |
Generated: 05/16/2024 21:42:30 by @brian-welsh
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# | ||
# CODEOWNERS Generated [DATE] | ||
# CODEOWNERS Generated 5/16/2024 9:42:54 PM | ||
# | ||
|
||
* @wcenterprises/digital-is-superusers [CODE-OWNERS] | ||
* @wcenterprises/digital-is-superusers @banno/team name [email protected] @github user name | ||
|
||
*.yml @wcenterprises/digital-is-build | ||
/build/ @wcenterprises/digital-is-build | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,20 +46,20 @@ jobs: | |
- uses: wcenterprises/digital-is-build-actions/[email protected] | ||
id: build-init | ||
with: | ||
package-name: '[PROJECT-NAME]' | ||
package-name: 'Jh.Sample' | ||
azdo-token: '${{ secrets.AZDO_NUGET_REPO }}' | ||
artifactory-username: ${{ secrets.ARTIFACTORY_USERNAME }} | ||
artifactory-password: ${{ secrets.ARTIFACTORY_PASSWORD }} | ||
|
||
- name: restore | ||
run: | | ||
dotnet restore '[SOLUTION-NAME]' | ||
dotnet restore 'Jh.Sample.sln' | ||
shell: pwsh | ||
|
||
- name: build | ||
run: | | ||
write-output "##[group]build: [SOLUTION-NAME]" | ||
dotnet build '[SOLUTION-NAME]' ` | ||
write-output "##[group]build: Jh.Sample.sln" | ||
dotnet build 'Jh.Sample.sln' ` | ||
--no-restore ` | ||
--configuration release ` | ||
-p:Copyright="${{ steps.build-init.outputs.package-copyright }}" ` | ||
|
@@ -79,8 +79,8 @@ jobs: | |
|
||
- name: publish | ||
run: | | ||
write-output "##[group]publish: [SOLUTION-NAME]" | ||
dotnet publish [SOLUTION-NAME] ` | ||
write-output "##[group]publish: Jh.Sample.sln" | ||
dotnet publish Jh.Sample.sln ` | ||
--property:PublishDir="${{ steps.build-init.outputs.build-output-path }}" ` | ||
--configuration release ` | ||
--no-build ` | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,12 +44,12 @@ jobs: | |
|
||
- uses: wcenterprises/digital-is-build-actions/[email protected] | ||
with: | ||
package-name: '[PROJECT-NAME]' | ||
package-name: 'Jh.Sample' | ||
azdo-token: '${{ secrets.AZDO_NUGET_REPO }}' | ||
|
||
- name: restore | ||
run: | | ||
dotnet restore '[SOLUTION-NAME]' | ||
dotnet restore 'Jh.Sample.sln' | ||
shell: pwsh | ||
working-directory: '${{ github.workspace }}/source' | ||
|
||
|
@@ -59,8 +59,8 @@ jobs: | |
Write-Output "building..." | ||
write-output "##[group]build: [SOLUTION-NAME]" | ||
dotnet build '[SOLUTION-NAME]' ` | ||
write-output "##[group]build: Jh.Sample.sln" | ||
dotnet build 'Jh.Sample.sln' ` | ||
--no-restore ` | ||
--configuration release ` | ||
-p:Copyright="${env:BA_PACKAGE_COPYRIGHT}" ` | ||
|
@@ -81,8 +81,8 @@ jobs: | |
|
||
- name: test | ||
run: | | ||
write-output "##[group]test: [SOLUTION-NAME]" | ||
dotnet test [SOLUTION-NAME] ` | ||
write-output "##[group]test: Jh.Sample.sln" | ||
dotnet test Jh.Sample.sln ` | ||
--blame ` | ||
--no-build ` | ||
--no-restore ` | ||
|