Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:
connection-string: ${{ secrets.AZURE_SQL_CONNECTION_STRING }}
project-file: './database/declarative-deploy/todo_v6/todo_v6.sqlproj'
build-arguments: '-c Release'
- name: Deploy Database
uses: azure/[email protected]
with:
connection-string: ${{ secrets.AZURE_SQL_CONNECTION_STRING }}
project-file: './database/declarative-deploy/todo_v5/todo_v5.sqlproj'
build-arguments: '-c Release'
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: true
###### Start of addition ######
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
Expand All @@ -27,6 +28,16 @@ jobs:
env:
ConnectionString: ${{ secrets.AZURE_SQL_CONNECTION_STRING }}
run: dotnet build && dotnet run
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Deploy Database
working-directory: ./database/imperative-deploy
env:
ConnectionString: ${{ secrets.AZURE_SQL_CONNECTION_STRING }}
run: dotnet build && dotnet run
###### End of addition ######
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
Expand Down
8 changes: 0 additions & 8 deletions api/local.settings.json.template

This file was deleted.

1 change: 0 additions & 1 deletion database/declarative-deploy/.env.template

This file was deleted.

Empty file modified database/declarative-deploy/azure-deploy-sql-db.sh
100644 → 100755
Empty file.
1 change: 0 additions & 1 deletion database/imperative-deploy/.env.template

This file was deleted.

7 changes: 7 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<html>
<head><title>302 Moved Temporarily</title></head>
<body>
<center><h1>302 Moved Temporarily</h1></center>
<hr><center>Umbrella Cloud Security Gateway</center>
</body>
</html>
Loading