devops: add steps for building local core & config

- our site uses workspace deps
This commit is contained in:
Ayo Ayco 2025-03-01 11:43:48 +01:00
parent 798b6df2b3
commit 315866bf97

View file

@ -15,9 +15,12 @@ tasks:
cd ~/"${REPO}" cd ~/"${REPO}"
git config --global credential.helper store git config --global credential.helper store
git push --mirror "https://github.com/${GH_USER}/${REPO}" git push --mirror "https://github.com/${GH_USER}/${REPO}"
- build-local-deps: - build-core:
cd ~/"${REPO}" cd ~/"${REPO}"
pnpm build pnpm -F ./packages/core build
- build-config:
cd ~/"${REPO}"
pnpm -F ./packages/config build
- install-deps: | - install-deps: |
cd ~/"${REPO}" cd ~/"${REPO}"
pnpm i pnpm i