fix(build): 💚 Add -e option to echo in CI

This commit is contained in:
Jesse Wierzbinski 2024-05-13 21:39:53 -10:00
parent 503dbdceb4
commit 736728d829
No known key found for this signature in database

View file

@ -19,7 +19,7 @@ jobs:
- uses: oven-sh/setup-bun@v1 - uses: oven-sh/setup-bun@v1
- name: Create bunfig.toml with NPM token (GitHub Secrets) - name: Create bunfig.toml with NPM token (GitHub Secrets)
run: echo "[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: Install dependencies - name: Install dependencies
run: bun install --frozen-lockfile --production run: bun install --frozen-lockfile --production