fix(build): 💚 Copy bunfig to root

This commit is contained in:
Jesse Wierzbinski 2024-06-07 15:10:14 -10:00
parent 2739c8043a
commit cedf94e2d6
No known key found for this signature in database

View file

@ -40,7 +40,10 @@ jobs:
- uses: oven-sh/setup-bun@v1
- name: Create bunfig.toml with NPM token (GitHub Secrets)
run: cd ${{ github.event.inputs.package }} && echo -e "[install]\nregistry = { url = \"https://registry.npmjs.org/\", token = \"${{ secrets.NPM_TOKEN }}\" }" > bunfig.toml
run: echo -e "[install]\nregistry = { url = \"https://registry.npmjs.org/\", token = \"${{ secrets.NPM_TOKEN }}\" }" > bunfig.toml
- name: Copy bunfig.toml to package directory
run: cp bunfig.toml ${{ github.event.inputs.package }}/bunfig.toml
- name: Install dependencies
run: bun install --frozen-lockfile