Skip to content

Commit 9416ebd

Browse files
committed
Merge branch 'main' into v3/fix-cli-pat-revoke
2 parents 404f87e + fb83d58 commit 9416ebd

File tree

7 files changed

+11
-5
lines changed

7 files changed

+11
-5
lines changed

.changeset/rotten-beers-refuse.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"trigger.dev": patch
3+
---
4+
5+
Add git to prod worker image which fixes private package installs

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
jobs:
55
e2e:
66
name: "🧪 E2E Tests"
7-
runs-on: [buildjet-16vcpu-ubuntu-2204, buildjet-pinned-location_de]
7+
runs-on: buildjet-16vcpu-ubuntu-2204
88
steps:
99
- name: 🐳 Login to Docker Hub
1010
uses: docker/login-action@v2

.github/workflows/publish-infra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
package: [coordinator, kubernetes-provider]
43-
runs-on: [buildjet-16vcpu-ubuntu-2204, buildjet-pinned-location_de]
43+
runs-on: buildjet-16vcpu-ubuntu-2204
4444
env:
4545
DOCKER_BUILDKIT: "1"
4646
steps:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
release:
1414
name: 🦋 Changesets Release
15-
runs-on: [buildjet-8vcpu-ubuntu-2204, buildjet-pinned-location_de]
15+
runs-on: buildjet-8vcpu-ubuntu-2204
1616
if: |
1717
github.repository == 'triggerdotdev/trigger.dev'
1818
outputs:

.github/workflows/typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_call:
44
jobs:
55
typecheck:
6-
runs-on: [buildjet-8vcpu-ubuntu-2204, buildjet-pinned-location_de]
6+
runs-on: buildjet-8vcpu-ubuntu-2204
77

88
steps:
99
- name: ⬇️ Checkout repo

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
jobs:
55
unitTests:
66
name: "🧪 Unit Tests"
7-
runs-on: [buildjet-8vcpu-ubuntu-2204, buildjet-pinned-location_de]
7+
runs-on: buildjet-8vcpu-ubuntu-2204
88
steps:
99
- name: ⬇️ Checkout repo
1010
uses: actions/checkout@v3

packages/cli-v3/src/Containerfile.prod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
55
busybox \
66
ca-certificates \
77
dumb-init \
8+
git \
89
openssl \
910
&& rm -rf /var/lib/apt/lists/*
1011

0 commit comments

Comments
 (0)