Skip to content

Commit

Permalink
Pass --log-url to every deployment:update call.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpugh committed Apr 8, 2020
1 parent 5f7dd82 commit 09fbf10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ jobs:
--tags "${ANSIBLE_TAGS}" \
--skip-tags "${ANSIBLE_SKIP_TAGS}" \
--volumes 0 \
&& bin/github deployment:update --state=in_progress --description="Preparing Containers with robo up... Done." \
|| ( bin/github deployment:update --state=failure --description="Preparing Containers with robo up... Failed." && exit 1 )
&& bin/github deployment:update --state=in_progress --description="Preparing Containers with robo up... Done." --log_url=${GITHUB_RUN_LOG_URL}#step:8:1 \
|| ( bin/github deployment:update --state=failure --description="Preparing Containers with robo up... Failed." --log_url=${GITHUB_RUN_LOG_URL}#step:8:1 && exit 1 )
- name: Wait for yum
if: matrix.os == 'centos7'
Expand All @@ -107,8 +107,8 @@ jobs:
run: |
bin/github deployment:update --state=in_progress --description="Installing DevShop with devshop-ansible-playbook..." --log_url=${GITHUB_RUN_LOG_URL}#step:10:1
bin/robo exec devshop-ansible-playbook \
&& bin/github deployment:update --state=success --description="Installing DevShop with devshop-ansible-playbook... Done" \
|| ( bin/github deployment:update --state=failure --description="Installing DevShop with devshop-ansible-playbook... Failed" && exit 1 )
&& bin/github deployment:update --state=success --description="Installing DevShop with devshop-ansible-playbook... Done" --log_url=${GITHUB_RUN_LOG_URL}#step:10:1 --environment_url=${GITHUB_RUN_LOG_URL}#step:8:1 \
|| ( bin/github deployment:update --state=failure --description="Installing DevShop with devshop-ansible-playbook... Failed" --log_url=${GITHUB_RUN_LOG_URL}#step:10:1 --environment_url=${GITHUB_RUN_LOG_URL}#step:8:1 && exit 1 )
- name: Test DevShop
run: |
Expand Down

0 comments on commit 09fbf10

Please sign in to comment.