Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,12 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: ${{ secrets.DOCKER_ORG }}/${{ secrets.DOCKER_REPO }}
- name: Load HEALTHCHECK_URL
if: vars.HEALTHCHECK_URL != ''
run: |
Comment on lines +101 to +103
Comment on lines +101 to +103

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot apply changes based on this feedback

curl --fail --silent --show-error \
--retry 3 --retry-delay 2 --max-time 30 \
--url "${{ vars.HEALTHCHECK_URL }}" >/dev/null || {
echo "Healthcheck request failed for ${{ vars.HEALTHCHECK_URL }}."
exit 1
Comment on lines +106 to +108
}
Loading