Skip to content

Commit 173bf91

Browse files
committed
Allow for deploying
1 parent e46e092 commit 173bf91

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,10 @@ jobs:
210210
name: Build E2B template
211211
runs-on: ubuntu-latest
212212
needs: [build-docker-image]
213-
if: needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true'
213+
if: always() &&
214+
!contains(needs.*.result, 'failure') &&
215+
!contains(needs.*.result, 'cancelled') &&
216+
needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true'
214217
steps:
215218
- name: Checkout repository
216219
uses: actions/checkout@v3
@@ -250,7 +253,7 @@ jobs:
250253
if: always() &&
251254
!contains(needs.*.result, 'failure') &&
252255
!contains(needs.*.result, 'cancelled') &&
253-
(needs.changes.outputs.js == 'true' || needs.changes.outputs.python == 'true' || needs.changes.outputs.charts == 'true')
256+
(needs.changes.outputs.js == 'true' || needs.changes.outputs.python == 'true' || needs.changes.outputs.charts == 'true' || needs.changes.outputs.template == 'true')
254257
name: Release
255258
runs-on: ubuntu-latest
256259
steps:

pnpm-workspace.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ packages:
22
- js
33
- python
44
- chart_data_extractor
5+
- template

template/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "@e2b/code-interpreter-template",
3+
"private": true,
4+
"version": "0.0.0"
5+
}

0 commit comments

Comments
 (0)