-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from loresoft/develop
upgrade
- Loading branch information
Showing
40 changed files
with
356 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,14 +21,14 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup .NET 6.0 | ||
uses: actions/setup-dotnet@v1 | ||
- name: Setup .NET 7.0 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.0.x | ||
dotnet-version: 7.0.x | ||
|
||
- name: Setup MSBuild | ||
uses: microsoft/[email protected] | ||
|
@@ -49,14 +49,14 @@ jobs: | |
|
||
- name: Upload WebApplication Artifact | ||
if: success() | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: WebApplication | ||
path: '${{env.BUILD_PATH}}/WebApplication' | ||
|
||
- name: Upload Database Artifact | ||
if: success() | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Database | ||
path: '${{env.BUILD_PATH}}/Database' | ||
|
@@ -68,7 +68,7 @@ jobs: | |
|
||
steps: | ||
- name: Download Web Application Artifact | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: WebApplication | ||
|
||
|
@@ -97,22 +97,22 @@ jobs: | |
|
||
steps: | ||
- name: Download Database Artifact | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: Database | ||
|
||
- name: Deploy SQL Server Database to Azure Staging | ||
if: github.ref == 'refs/heads/develop' | ||
uses: azure/sql-action@v1 | ||
uses: azure/sql-action@v2 | ||
with: | ||
server-name: ${{secrets.AZURE_SQL_SERVER}} | ||
connection-string: ${{secrets.AZURE_SQL_CONNECTION_STAGING}} | ||
dacpac-package: './InstructorIQ.dacpac' | ||
path: './InstructorIQ.dacpac' | ||
action: 'publish' | ||
|
||
- name: Deploy SQL Server Database to Azure Production | ||
if: github.ref == 'refs/heads/master' | ||
uses: azure/sql-action@v1 | ||
uses: azure/sql-action@v2 | ||
with: | ||
server-name: ${{secrets.AZURE_SQL_SERVER}} | ||
connection-string: ${{secrets.AZURE_SQL_CONNECTION_PRODUCTION}} | ||
dacpac-package: './InstructorIQ.dacpac' | ||
path: './InstructorIQ.dacpac' | ||
action: 'publish' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 8 additions & 3 deletions
11
...rc/InstructorIQ.Core/Domain/AuthenticationEvent/AuthenticationEventServiceRegistration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 9 additions & 5 deletions
14
service/src/InstructorIQ.Core/Domain/CommandQueryServiceModule.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.