We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf5f38e commit a604958Copy full SHA for a604958
.github/workflows/build_template.yml
@@ -54,7 +54,7 @@ jobs:
54
run: |
55
rm -f e2b.toml && 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
56
echo "build_output=$(cat build_output.txt)" >> $GITHUB_OUTPUT
57
- TEMPLATE_ID=$(cat build_output.txt | grep -o 'Requested build for the sandbox template [a-z0-9]*' | cut -d' ' -f6)
+ TEMPLATE_ID=$(grep "Requested build for the sandbox template" build_output.txt | awk '{print $NF}')
58
echo "template_id=$TEMPLATE_ID" >> $GITHUB_OUTPUT
59
working-directory: ./template
60
env:
0 commit comments