Skip to content

Commit fe0fbff

Browse files
committed
removed hardcoded team id in CI
1 parent f1ebc55 commit fe0fbff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
id: build-template
4949
run: |
5050
rm -f e2b.toml
51-
e2b template build --team "460355b3-4f64-48f9-9a16-4442817f79f5" --memory-mb 1024 -c "/root/.jupyter/start-up.sh" -d "e2b.Dockerfile" | tee build_output.txt
51+
e2b template build --memory-mb 1024 -c "/root/.jupyter/start-up.sh" -d "e2b.Dockerfile" | tee build_output.txt
5252
TEMPLATE_ID=$(grep "Requested build for the sandbox template" build_output.txt | awk '{print $NF}')
5353
echo "template_id=$TEMPLATE_ID" >> $GITHUB_OUTPUT
5454
working-directory: ./template

.github/workflows/cleanup_build_template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Cleanup E2B template
2828
id: cleanup-template
2929
run: |
30-
e2b template delete --team "460355b3-4f64-48f9-9a16-4442817f79f5" ${{ inputs.E2B_CI_TEMPLATE }}
30+
e2b template delete ${{ inputs.E2B_CI_TEMPLATE }}
3131
env:
3232
E2B_ACCESS_TOKEN: ${{ secrets.E2B_ACCESS_TOKEN }}
3333
E2B_DOMAIN: ${{ inputs.E2B_DOMAIN }}

0 commit comments

Comments
 (0)