Skip to content

Commit e2d3526

Browse files
committed
build(webui): correctly pass turbo token
1 parent c61f739 commit e2d3526

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build-publish-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,5 @@ jobs:
7070
tags: ${{ steps.meta.outputs.tags }}
7171
labels: ${{ steps.meta.outputs.labels }}
7272
build-args: |
73-
TURBO_TOKEN=${{ secrets.TURBO_TOKEN }}
7473
TURBO_TEAM=${{ vars.TURBO_TEAM }}
74+
TURBO_TOKEN=${{ secrets.TURBO_TOKEN }}

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ FROM node:24-alpine AS base
33
ARG TURBO_TEAM
44
ENV TURBO_TEAM=$TURBO_TEAM
55

6-
RUN --mount=type=secret,id=TURBO_TOKEN,env=TURBO_TOKEN
6+
ARG TURBO_TOKEN
7+
ENV TURBO_TOKEN=$TURBO_TOKEN
78

89
ENV PNPM_HOME="/pnpm"
910
ENV PATH="$PNPM_HOME:$PATH"

0 commit comments

Comments
 (0)