Compare commits
3 Commits
master
...
deploy-dem
Author | SHA1 | Date |
---|---|---|
|
dfc09dd730 | |
|
584d895bc3 | |
|
bd2c0fe475 |
|
@ -414,7 +414,7 @@ jobs:
|
||||||
deploy_to_azure:
|
deploy_to_azure:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
name: Deploy demo app to Microsoft Azure
|
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 ]
|
needs: [ test_frontend, test_e2e, test_backend ]
|
||||||
steps:
|
steps:
|
||||||
- name: Git checkout
|
- name: Git checkout
|
||||||
|
@ -462,7 +462,7 @@ jobs:
|
||||||
- name: Wait for Azure for 60 seconds
|
- name: Wait for Azure for 60 seconds
|
||||||
uses: jakejarvis/wait-action@master
|
uses: jakejarvis/wait-action@master
|
||||||
with:
|
with:
|
||||||
time: '60s'
|
time: '100s'
|
||||||
- name: Smoke test documentation
|
- name: Smoke test documentation
|
||||||
run: ci/verify_docs_alive.sh
|
run: ci/verify_docs_alive.sh
|
||||||
- name: Cancel workflow
|
- name: Cancel workflow
|
||||||
|
|
|
@ -11,4 +11,4 @@ for module in taskana-core taskana-spring; do
|
||||||
done
|
done
|
||||||
for module in taskana-cdi; do
|
for module in taskana-cdi; do
|
||||||
test 200 -eq "$(curl -sw "%{http_code}" -o /dev/null "$BASE_URL/docs/java/$module/pro/taskana/common/internal/package-summary.html")"
|
test 200 -eq "$(curl -sw "%{http_code}" -o /dev/null "$BASE_URL/docs/java/$module/pro/taskana/common/internal/package-summary.html")"
|
||||||
done
|
done
|
Loading…
Reference in New Issue