Update docker-publish.yml
Docker / build (push) Failing after 19s

This commit is contained in:
2026-07-18 01:15:18 +12:00
parent 0c9a87e8be
commit 7ad57bb981
+4 -4
View File
@@ -6,13 +6,13 @@ name: Docker
on: on:
push: push:
branches: branches:
- main - master
- develop - develop
tags: tags:
- "v*.*.*" - "v*.*.*"
pull_request: pull_request:
branches: branches:
- main - master
- develop - develop
jobs: jobs:
@@ -85,9 +85,9 @@ jobs:
# Store that whole URL as the Actions secret ARCANE_WEBHOOK_URL. The # Store that whole URL as the Actions secret ARCANE_WEBHOOK_URL. The
# endpoint is unauthenticated apart from the token in the path (rate-limited # endpoint is unauthenticated apart from the token in the path (rate-limited
# to 60 req / 10s per IP), takes no body, and only fires on real pushes to # to 60 req / 10s per IP), takes no body, and only fires on real pushes to
# main — not on PRs, and skipped automatically if the secret is unset. # master — not on PRs, and skipped automatically if the secret is unset.
- name: Trigger Arcane deployment - name: Trigger Arcane deployment
if: github.event_name == 'push' && github.ref == 'refs/heads/main' if: github.event_name == 'push' && github.ref == 'refs/heads/master'
env: env:
ARCANE_WEBHOOK_URL: ${{ secrets.ARCANE_WEBHOOK_URL }} ARCANE_WEBHOOK_URL: ${{ secrets.ARCANE_WEBHOOK_URL }}
run: | run: |