0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

move changeset to run after build, no test required (#2341)

This commit is contained in:
Fred K. Schott 2022-01-10 14:36:41 -08:00 committed by GitHub
parent 973751e31b
commit 6cbe79fac4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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