Skip to content

Commit ff162ad

Browse files
authored
Fix bun template install (#2460)
1 parent a930967 commit ff162ad

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/deploy-base-template.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ on:
88
required: true
99
type: choice
1010
options:
11-
- foxtrot
1211
- staging
1312
- juliett
13+
- foxtrot
1414
use_cache:
1515
description: Use the build cache when available
1616
required: false
@@ -45,11 +45,12 @@ jobs:
4545
- name: Build template
4646
working-directory: ./packages/shared/scripts
4747
run: |
48+
rm .env.local # auto read by bun, which we don't want
49+
echo "building base template for ${E2B_DOMAIN} ... "
4850
bun install
4951
bun run ./build.prod.ts
5052
env:
5153
E2B_API_KEY: ${{ secrets.E2B_API_KEY }}
52-
E2B_DEBUG: "false"
5354
E2B_DOMAIN: ${{ vars.E2B_DOMAIN }}
5455
USE_CACHE: ${{ inputs.use_cache }}
5556

0 commit comments

Comments
 (0)