summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 82db49a59..5081e1b6f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -214,12 +214,12 @@ jobs:
run: node ./scripts/smoke/index.js
- # Changelog can only run _after_ Build and Test.
+ # Changelog can only run _after_ build.
# We download all `dist/` artifacts from GitHub to skip the build process.
changelog:
name: Changelog PR or Release
if: ${{ github.ref_name == 'main' && github.repository_owner == 'withastro' }}
- needs: [lint, test, smoke]
+ needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2