From 93ed0281a13b0ceda5ec073ac5af52cd758403bc Mon Sep 17 00:00:00 2001 From: MrMeeb Date: Sun, 12 May 2024 11:22:16 +0000 Subject: [PATCH] Correct workflow dependency graph --- .gitea/workflows/build-develop.yaml | 2 +- .gitea/workflows/build-main.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-develop.yaml b/.gitea/workflows/build-develop.yaml index 83c5a59..20aea31 100644 --- a/.gitea/workflows/build-develop.yaml +++ b/.gitea/workflows/build-develop.yaml @@ -75,7 +75,7 @@ jobs: "Notify": runs-on: [ubuntu-docker-latest, linux/amd64] - needs: ["Build Image", "Validate Image"] + needs: ["Validate Image", "Publish Image"] steps: - name: Notify of success uses: rjstone/discord-webhook-notify@v1 diff --git a/.gitea/workflows/build-main.yaml b/.gitea/workflows/build-main.yaml index fca21de..83af6eb 100644 --- a/.gitea/workflows/build-main.yaml +++ b/.gitea/workflows/build-main.yaml @@ -75,7 +75,7 @@ jobs: "Notify": runs-on: [ubuntu-docker-latest, linux/amd64] - needs: ["Build Image", "Validate Image"] + needs: ["Validate Image", "Publish Image"] steps: - name: Notify of success uses: rjstone/discord-webhook-notify@v1