From a91b95b6658af673d56a09aadc31676315ac9d35 Mon Sep 17 00:00:00 2001 From: Andrew Lilley Brinker Date: Fri, 9 Aug 2024 11:05:55 -0700 Subject: [PATCH] fix: Fix broken website deploy CI job The website deploy CI job was quietly broken by #264, and this commit fixes it by ensuring the job dependency name matches the earlier renamed build job. It also gives the "Website Deploy" and "Website Test" workflows distinct names so they're clearly different in the GitHub UI. Signed-off-by: Andrew Lilley Brinker --- .github/workflows/commits.yml | 2 +- .github/workflows/website-deploy.yml | 4 ++-- .github/workflows/website-test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/commits.yml b/.github/workflows/commits.yml index 1080d6b7..f54f6ebf 100644 --- a/.github/workflows/commits.yml +++ b/.github/workflows/commits.yml @@ -1,4 +1,4 @@ -name: Commits +name: Commit Checks on: pull_request: diff --git a/.github/workflows/website-deploy.yml b/.github/workflows/website-deploy.yml index 098b4430..cbdc490b 100644 --- a/.github/workflows/website-deploy.yml +++ b/.github/workflows/website-deploy.yml @@ -1,4 +1,4 @@ -name: Website +name: Website Deploy # Runs on pushed to the default branch but can also be # run manually from the GitHub Actions page. @@ -86,7 +86,7 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest - needs: build + needs: website-build steps: - name: Deploy to GitHub Pages id: deployment diff --git a/.github/workflows/website-test.yml b/.github/workflows/website-test.yml index a6a0d192..751ba2ba 100644 --- a/.github/workflows/website-test.yml +++ b/.github/workflows/website-test.yml @@ -1,4 +1,4 @@ -name: Website +name: Website Test # Run when PRs would modify the site code. on: