From 0898effb833d5aab2a97196d5a3e512b12b9538c Mon Sep 17 00:00:00 2001 From: sfrevel <3075075+sfrevel@users.noreply.github.com> Date: Thu, 25 May 2023 11:02:13 +0200 Subject: [PATCH] Closes #<2270>: add deployment to Microsoft Azure --- .github/workflows/continuous-integration.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 64373e4b4..f6e797c21 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -459,6 +459,12 @@ jobs: IBM_CLOUD_CF_SPACE: ${{ secrets.IBM_CLOUD_CF_SPACE }} RESOURCE_GROUP: default APP_MANIFEST_FILE: ci/ibm_cf_manifest.yml + - name: Deploy to Microsoft Azure + uses: Azure/webapps-deploy@v2 + with: + app-name: taskana + publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} + package: rest/taskana-rest-spring-example-boot/target/taskana-rest-spring-example-boot.jar - name: Smoke test documentation run: ci/verify_docs_alive.sh - name: Cancel workflow