File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 4848 NEXT_PUBLIC_URI=${{ vars.NEXT_PUBLIC_URI }}
4949 INTERNAL_JWT_SECRET=${{ secrets.INTERNAL_JWT_SECRET }}
5050 URI_GITRANKS=${{ vars.URI_GITRANKS }}
51+ URI_GITRANKS_BUILD=${{ secrets.URI_GITRANKS_BUILD }}
5152
5253 # 4. SSH to droplet and deploy
5354 - name : SSH to droplet and deploy
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ ENV INTERNAL_JWT_SECRET=$INTERNAL_JWT_SECRET
2424ARG URI_GITRANKS
2525ENV URI_GITRANKS=$URI_GITRANKS
2626
27+ ARG URI_GITRANKS_BUILD
28+ ENV URI_GITRANKS_BUILD=$URI_GITRANKS_BUILD
29+
2730WORKDIR /app
2831COPY --from=deps /app/node_modules ./node_modules
2932COPY . .
Original file line number Diff line number Diff line change 11'use server' ;
2+
23import jwt from 'jsonwebtoken' ;
34
45export async function signedFetch ( path : string , init : RequestInit = { } ) {
You can’t perform that action at this time.
0 commit comments