Skip to content

Commit

Permalink
Closes Taskana#2581: Deploy Demo App to Azure Fails in Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesrdi committed May 29, 2024
1 parent 119021a commit 6d0ac04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ jobs:
deploy_to_azure:
runs-on: ubuntu-20.04
name: Deploy demo app to Microsoft Azure
if: github.repository == 'Taskana/taskana' && github.ref == 'refs/heads/master' && github.head_ref == ''
if: github.repository == 'Taskana/taskana' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/deploy-demo-fix') && github.head_ref == ''
needs: [ test_frontend, test_e2e, test_backend ]
steps:
- name: Git checkout
Expand Down Expand Up @@ -462,7 +462,7 @@ jobs:
- name: Wait for Azure for 60 seconds
uses: jakejarvis/wait-action@master
with:
time: '60s'
time: '100s'
- name: Smoke test documentation
run: ci/verify_docs_alive.sh
- name: Cancel workflow
Expand Down

0 comments on commit 6d0ac04

Please sign in to comment.