Skip to content
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.

Commit

Permalink
Initial commit ticket_number
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-welsh committed May 16, 2024
1 parent ec6ecaf commit 0bc4cc7
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}" `
Expand All @@ -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 `
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Build
run: |
dotnet build "source/[SOLUTION-NAME]" `
dotnet build "source/Jh.Sample.sln" `
--configuration release `
--verbosity minimal `
-p:TreatWarningsAsErrors=false `
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: wcenterprises/digital-is-build-actions/init@v4
id: init
with:
package-name: '[PROJECT-NAME]'
package-name: 'Jh.Sample'

- name: Setup
id: setup
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand All @@ -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}" `
Expand All @@ -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 `
Expand Down
Binary file modified README.md
Binary file not shown.
2 changes: 1 addition & 1 deletion source/DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false

COPY --from=publish /app .

ENTRYPOINT ["dotnet", "[PROJECT-NAME].Service.Implementation.dll"]
ENTRYPOINT ["dotnet", "Jh.Sample.Service.Implementation.dll"]

0 comments on commit 0bc4cc7

Please sign in to comment.