File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,12 @@ jobs:
1616 with :
1717 username : ${{ secrets.DOCKERHUB_USERNAME }}
1818 password : ${{ secrets.DOCKERHUB_TOKEN }}
19-
2019 - name : Build and push code-server
2120 uses : docker/build-push-action@v5
2221 with :
2322 context : ./mobile-magic
2423 file : ./mobile-magic/docker/Dockerfile.frontend.prod
2524 push : true
2625 tags : 100xdevs/antidevs-frontend:${{ github.sha }}
27- env :
28- - name : NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY
29- value : ${{ secrets.CLERK_PUBLISHABLE_KEY }}
26+ build-args : |
27+ NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=${{ secrets.CLERK_PUBLISHABLE_KEY }}
Original file line number Diff line number Diff line change 11FROM oven/bun:latest
22
33WORKDIR /app
4+ ARG NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY
5+ ENV NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=${NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY}
46
57COPY ./apps/frontend/ ./apps/frontend
68COPY ./packages/ ./packages
You can’t perform that action at this time.
0 commit comments