From 8699398d3ade9779d3050d7acc1f4a42436a2f1d Mon Sep 17 00:00:00 2001 From: EttorePannain <43599685+EttorePannain@users.noreply.github.com> Date: Sat, 15 Oct 2022 23:09:06 +0200 Subject: [PATCH 01/29] commit --- .github/workflows/azuresqldatabase.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/azuresqldatabase.yml diff --git a/.github/workflows/azuresqldatabase.yml b/.github/workflows/azuresqldatabase.yml new file mode 100644 index 00000000..fba449ea --- /dev/null +++ b/.github/workflows/azuresqldatabase.yml @@ -0,0 +1,23 @@ +name: 'Deploy Azure SQL Database schema' + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - main + +jobs: + deploy_database_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Deploy Database Job + steps: + - uses: actions/checkout@v2 + - uses: Azure/sql-action@v1.2 + with: + connection-string: ${{ secrets.AZURE_SQL_CONNECTION_STRING }} + # uses dacpac to deploy database schema + dacpac-package: './database/dacpac/bus-db.dacpac' \ No newline at end of file From 095d5f2957d1f058b15adb6e8c4ddf22b11542e6 Mon Sep 17 00:00:00 2001 From: EttorePannain <43599685+EttorePannain@users.noreply.github.com> Date: Sat, 15 Oct 2022 23:09:43 +0200 Subject: [PATCH 02/29] commit --- .../workflows/azuresqldatabase.yml.template | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/azuresqldatabase.yml.template diff --git a/.github/workflows/azuresqldatabase.yml.template b/.github/workflows/azuresqldatabase.yml.template deleted file mode 100644 index fba449ea..00000000 --- a/.github/workflows/azuresqldatabase.yml.template +++ /dev/null @@ -1,23 +0,0 @@ -name: 'Deploy Azure SQL Database schema' - -on: - push: - branches: - - main - pull_request: - types: [opened, synchronize, reopened, closed] - branches: - - main - -jobs: - deploy_database_job: - if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') - runs-on: ubuntu-latest - name: Deploy Database Job - steps: - - uses: actions/checkout@v2 - - uses: Azure/sql-action@v1.2 - with: - connection-string: ${{ secrets.AZURE_SQL_CONNECTION_STRING }} - # uses dacpac to deploy database schema - dacpac-package: './database/dacpac/bus-db.dacpac' \ No newline at end of file From 16a5ef7aeb2ec7fcd83070882e77003c5e9d7f7d Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Sun, 23 Oct 2022 11:53:11 +0200 Subject: [PATCH 03/29] 231022-1153 --- .vscode/extensions.json | 6 +++ .vscode/launch.json | 11 +++++ .vscode/settings.json | 8 +++- .vscode/tasks.json | 81 +++++++++++++++++++++++++++++++++ database/notebooks/myTest.ipynb | 0 5 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json create mode 100644 database/notebooks/myTest.ipynb diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..bb763007 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "ms-azuretools.vscode-azurefunctions", + "ms-dotnettools.csharp" + ] +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..894cbe6a --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Attach to .NET Functions", + "type": "coreclr", + "request": "attach", + "processId": "${command:azureFunctions.pickProcess}" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index bc64462d..b77904e8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,5 +3,11 @@ "enable": true, "baseUri": "/api", "proxyUri": "http://localhost:7071/api" - } + }, + "azureFunctions.projectSubpath": "azure-static-web-app\\api\\dotnet", + "azureFunctions.deploySubpath": "azure-static-web-app\\api\\dotnet/bin/Release/netcoreapp3.1/publish", + "azureFunctions.projectLanguage": "C#", + "azureFunctions.projectRuntime": "~3", + "debug.internalConsoleOptions": "neverOpen", + "azureFunctions.preDeployTask": "publish (functions)" } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..8d986ed9 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,81 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "clean (functions)", + "command": "dotnet", + "args": [ + "clean", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "type": "process", + "problemMatcher": "$msCompile", + "options": { + "cwd": "${workspaceFolder}/azure-static-web-app\\api\\dotnet" + } + }, + { + "label": "build (functions)", + "command": "dotnet", + "args": [ + "build", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "type": "process", + "dependsOn": "clean (functions)", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": "$msCompile", + "options": { + "cwd": "${workspaceFolder}/azure-static-web-app\\api\\dotnet" + } + }, + { + "label": "clean release (functions)", + "command": "dotnet", + "args": [ + "clean", + "--configuration", + "Release", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "type": "process", + "problemMatcher": "$msCompile", + "options": { + "cwd": "${workspaceFolder}/azure-static-web-app\\api\\dotnet" + } + }, + { + "label": "publish (functions)", + "command": "dotnet", + "args": [ + "publish", + "--configuration", + "Release", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "type": "process", + "dependsOn": "clean release (functions)", + "problemMatcher": "$msCompile", + "options": { + "cwd": "${workspaceFolder}/azure-static-web-app\\api\\dotnet" + } + }, + { + "type": "func", + "dependsOn": "build (functions)", + "options": { + "cwd": "${workspaceFolder}/azure-static-web-app\\api\\dotnet/bin/Debug/netcoreapp3.1" + }, + "command": "host start", + "isBackground": true, + "problemMatcher": "$func-dotnet-watch" + } + ] +} \ No newline at end of file diff --git a/database/notebooks/myTest.ipynb b/database/notebooks/myTest.ipynb new file mode 100644 index 00000000..e69de29b From 9658e6269b8648b5492924944a82d0d913d55d42 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Sun, 23 Oct 2022 12:23:16 +0200 Subject: [PATCH 04/29] Abilita database YAML --- .github/workflows/azuresqldatabase.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/azuresqldatabase.yml b/.github/workflows/azuresqldatabase.yml index fba449ea..8aec0041 100644 --- a/.github/workflows/azuresqldatabase.yml +++ b/.github/workflows/azuresqldatabase.yml @@ -1,4 +1,4 @@ -name: 'Deploy Azure SQL Database schema' +name: 'Deploy Azure SQL Database schema versione del 23-10-2022-12:23' on: push: From 55f4ab3592a92e3d61d0efd66f01b35c6cb8745c Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Sun, 23 Oct 2022 19:19:31 +0200 Subject: [PATCH 05/29] abilitazione function workflow --- .github/workflows/dotnetfunction.yml | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/dotnetfunction.yml diff --git a/.github/workflows/dotnetfunction.yml b/.github/workflows/dotnetfunction.yml new file mode 100644 index 00000000..488302dd --- /dev/null +++ b/.github/workflows/dotnetfunction.yml @@ -0,0 +1,39 @@ +name: Deploy DotNet project to function app with a Linux environment + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +env: + AZURE_FUNCTIONAPP_PACKAGE_PATH: 'azure-function/dotnet' # set this to the path to your web app project, defaults to the repository root + AZURE_FUNCTIONAPP_NAME: antho-catch-bus # set this to your application's name + DOTNET_VERSION: '6.0' + +jobs: + build-and-deploy-function-app: + runs-on: ubuntu-latest + steps: + - name: 'Checkout GitHub Action' + uses: actions/checkout@main + + - name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment + uses: actions/setup-dotnet@v1 + with: + dotnet-version: ${{ env.DOTNET_VERSION }} + + - name: 'Resolve Project Dependencies Using Dotnet' + shell: bash + run: | + pushd './${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}' + dotnet build --configuration Release --output ./output + popd + - name: 'Run Azure Functions Action' + uses: Azure/functions-action@v1 + id: fa + with: + app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }} + package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output' + publish-profile: ${{ secrets.AZURE_FUNCTIONAPP_PUBLISH_PROFILE }} + From 36716c3c317c0db32d0aa3a3d79c15213b6ac948 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Sun, 23 Oct 2022 19:27:17 +0200 Subject: [PATCH 06/29] push di funzione --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index b77904e8..a7c14f40 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -9,5 +9,8 @@ "azureFunctions.projectLanguage": "C#", "azureFunctions.projectRuntime": "~3", "debug.internalConsoleOptions": "neverOpen", - "azureFunctions.preDeployTask": "publish (functions)" + "azureFunctions.preDeployTask": "publish (functions)", + "githubPullRequests.ignoredPullRequestBranches": [ + "main" + ] } \ No newline at end of file From b785160369966960fb067364b2e5a32de144a304 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Sun, 23 Oct 2022 19:58:36 +0200 Subject: [PATCH 07/29] test From d33a24aaa442e06811bc3aa63f61c2be6c5ff386 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Mon, 24 Oct 2022 17:10:35 +0200 Subject: [PATCH 08/29] enable function workflow From 5a57e9792b077c1e6cfcb4d21bca3d334c0cd504 Mon Sep 17 00:00:00 2001 From: EttorePannain <43599685+EttorePannain@users.noreply.github.com> Date: Mon, 24 Oct 2022 19:03:29 +0200 Subject: [PATCH 09/29] ci: add Azure Static Web Apps workflow file on-behalf-of: @Azure opensource@microsoft.com --- ...ure-static-web-apps-kind-sea-06477601e.yml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/azure-static-web-apps-kind-sea-06477601e.yml diff --git a/.github/workflows/azure-static-web-apps-kind-sea-06477601e.yml b/.github/workflows/azure-static-web-apps-kind-sea-06477601e.yml new file mode 100644 index 00000000..a896daa8 --- /dev/null +++ b/.github/workflows/azure-static-web-apps-kind-sea-06477601e.yml @@ -0,0 +1,45 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - main + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_KIND_SEA_06477601E }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "/" # App source code path + api_location: "" # Api source code path - optional + output_location: "" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_KIND_SEA_06477601E }} + action: "close" From c6e1f8cdc2461199843ed34d18de11c0e75e7693 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Mon, 24 Oct 2022 19:08:35 +0200 Subject: [PATCH 10/29] Abilita database YAML" From bc42faf4c7bf3b22fe2e056872c620bac3cd58ba Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Mon, 24 Oct 2022 19:13:14 +0200 Subject: [PATCH 11/29] enable function workflow From 430615502a3978bf0a94f8126c3201a307ba52d7 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Mon, 24 Oct 2022 19:24:50 +0200 Subject: [PATCH 12/29] db push conn string From 7d571900097373ea46f88216e3c6e458462978be Mon Sep 17 00:00:00 2001 From: EttorePannain <43599685+EttorePannain@users.noreply.github.com> Date: Tue, 25 Oct 2022 09:50:38 +0200 Subject: [PATCH 13/29] ci: add Azure Static Web Apps workflow file on-behalf-of: @Azure opensource@microsoft.com --- ...ic-web-apps-wonderful-island-0c32a881e.yml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/azure-static-web-apps-wonderful-island-0c32a881e.yml diff --git a/.github/workflows/azure-static-web-apps-wonderful-island-0c32a881e.yml b/.github/workflows/azure-static-web-apps-wonderful-island-0c32a881e.yml new file mode 100644 index 00000000..46cf4390 --- /dev/null +++ b/.github/workflows/azure-static-web-apps-wonderful-island-0c32a881e.yml @@ -0,0 +1,45 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - main + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_WONDERFUL_ISLAND_0C32A881E }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "/" # App source code path + api_location: "" # Api source code path - optional + output_location: "" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_WONDERFUL_ISLAND_0C32A881E }} + action: "close" From 141ef16f23a6228a27b5509c48eaad02088bd78c Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 10:07:22 +0200 Subject: [PATCH 14/29] Abilita database YAML From 1a8251eb8e8e2958eb3e3037b5e952a90fd7b813 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 10:17:26 +0200 Subject: [PATCH 15/29] enable function workflow From 061c9d2a15b178118172681a52b060511158e8e4 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 10:20:52 +0200 Subject: [PATCH 16/29] enable function workflow From 3b02e73b1fb274597ff66fb424d8282bb4e1a6d8 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 10:36:59 +0200 Subject: [PATCH 17/29] enable function workflow -1036 From 95721350215fe41d5acef72586e0483029798d4a Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 12:03:20 +0200 Subject: [PATCH 18/29] enable function workflow v251022-1203 From 20f72b91a4d109411516aeff545aa46fd67c1c4f Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 12:25:32 +0200 Subject: [PATCH 19/29] enable function workflow.251022-1225 --- ...-apps-dotnet.yml.template => azure-static-web-apps-dotnet.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{azure-static-web-apps-dotnet.yml.template => azure-static-web-apps-dotnet.yml} (100%) diff --git a/.github/workflows/azure-static-web-apps-dotnet.yml.template b/.github/workflows/azure-static-web-apps-dotnet.yml similarity index 100% rename from .github/workflows/azure-static-web-apps-dotnet.yml.template rename to .github/workflows/azure-static-web-apps-dotnet.yml From caab8ceb4f62219cce08e22fe53f29a666cfe80e Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 12:36:48 +0200 Subject: [PATCH 20/29] enable function workflow.251022-1236 From 384f42c5e91453f9922ae1fdb923c80ceb9929d0 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 12:45:46 +0200 Subject: [PATCH 21/29] restore yml --- ...-apps-dotnet.yml => azure-static-web-apps-dotnet.yml.template} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{azure-static-web-apps-dotnet.yml => azure-static-web-apps-dotnet.yml.template} (100%) diff --git a/.github/workflows/azure-static-web-apps-dotnet.yml b/.github/workflows/azure-static-web-apps-dotnet.yml.template similarity index 100% rename from .github/workflows/azure-static-web-apps-dotnet.yml rename to .github/workflows/azure-static-web-apps-dotnet.yml.template From bb751615be17bb81988def74b6e3af223feb7e20 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 17:00:43 +0200 Subject: [PATCH 22/29] Abilita database YAML --- .github/workflows/azuresqldatabase.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/azuresqldatabase.yml b/.github/workflows/azuresqldatabase.yml index 8aec0041..dc4ddcfd 100644 --- a/.github/workflows/azuresqldatabase.yml +++ b/.github/workflows/azuresqldatabase.yml @@ -1,4 +1,4 @@ -name: 'Deploy Azure SQL Database schema versione del 23-10-2022-12:23' +name: 'Deploy Azure SQL Database schema versione del 25-10-2022-17:00' on: push: From 16720245f2d6d2cd117497613f803c9ddabe41bf Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 17:25:09 +0200 Subject: [PATCH 23/29] abilita workflow function From 157c2d7d167fc53ae0da94c62bfd193c4cc2d942 Mon Sep 17 00:00:00 2001 From: EttorePannain <43599685+EttorePannain@users.noreply.github.com> Date: Tue, 25 Oct 2022 18:46:45 +0200 Subject: [PATCH 24/29] ci: add Azure Static Web Apps workflow file on-behalf-of: @Azure opensource@microsoft.com --- ...static-web-apps-brave-forest-06c726610.yml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/azure-static-web-apps-brave-forest-06c726610.yml diff --git a/.github/workflows/azure-static-web-apps-brave-forest-06c726610.yml b/.github/workflows/azure-static-web-apps-brave-forest-06c726610.yml new file mode 100644 index 00000000..cca41fab --- /dev/null +++ b/.github/workflows/azure-static-web-apps-brave-forest-06c726610.yml @@ -0,0 +1,45 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - main + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BRAVE_FOREST_06C726610 }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "azure-static-web-app/client" # App source code path + api_location: "azure-static-web-app/api/dotnet" # Api source code path - optional + output_location: "" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BRAVE_FOREST_06C726610 }} + action: "close" From 8c2608c119fa2197463597e010a5d35b22cba622 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Tue, 25 Oct 2022 19:16:33 +0200 Subject: [PATCH 25/29] enable app statica workflow From c329e631ee5662f5c2c0f1a2f6d5972531160871 Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Wed, 26 Oct 2022 11:17:06 +0200 Subject: [PATCH 26/29] Abilita database YAML --- .github/workflows/azuresqldatabase.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/azuresqldatabase.yml b/.github/workflows/azuresqldatabase.yml index dc4ddcfd..70d3403d 100644 --- a/.github/workflows/azuresqldatabase.yml +++ b/.github/workflows/azuresqldatabase.yml @@ -1,4 +1,4 @@ -name: 'Deploy Azure SQL Database schema versione del 25-10-2022-17:00' +name: 'Deploy Azure SQL Database schema versione del 26-10-2022-11:00' on: push: From 1e6edec935506ff0a4c6ed9a8aac5e3836c240ca Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Wed, 26 Oct 2022 11:48:15 +0200 Subject: [PATCH 27/29] Abilita database YAML mod2 From 180966381f8da3a2437d43fd9965b57ca1ab2dcc Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Wed, 26 Oct 2022 12:26:27 +0200 Subject: [PATCH 28/29] abilita workflow funzione From 8ca5e46e18e9896db3e30365e7e68a5917bc426b Mon Sep 17 00:00:00 2001 From: Ettore Pannain Date: Wed, 26 Oct 2022 12:44:49 +0200 Subject: [PATCH 29/29] deploy 261022