From fac7cedb4badbdb9efcf973c7666269a1d33d71f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Wed, 29 Nov 2023 09:39:49 -0800 Subject: [PATCH] fix(ci): dependency name for append-release This needs to survive one more release before extra-artifacts are available. --- .github/workflows/append-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/append-release.yml b/.github/workflows/append-release.yml index 4682091fc..f7d214c50 100644 --- a/.github/workflows/append-release.yml +++ b/.github/workflows/append-release.yml @@ -10,10 +10,10 @@ on: workflow_run: workflows: ["Release"] types: - - completed + - completed jobs: - # Check if we should actually run by looking for the should-publish job + # Check if we should actually run by looking for the host job should-run: runs-on: ubuntu-latest if: ${{ github.event.workflow_run.conclusion == 'success' }} @@ -31,7 +31,7 @@ jobs: run_id: context.payload.workflow_run.id, }); for (const job of allRuns.data.jobs) { - if (job.name == "should-publish") { + if (job.name == "host") { if (job.status == "completed" && job.conclusion == "success") { return "run" }