We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a31d70 commit a4cb366Copy full SHA for a4cb366
4 files changed
.github/workflows/liara.yaml
@@ -15,6 +15,13 @@ jobs:
15
node-version: "20"
16
- name: install-dependencies
17
run: npm ci
18
+ - name: generate-llms-content
19
+ env:
20
+ MY_BASE_URL: ${{ secrets.MY_BASE_URL }}
21
+ MY_API_KEY: ${{ secrets.MY_API_KEY }}
22
+ run: |
23
+ echo "Running MDX to MD conversion with git-based change detection..."
24
+ npm run generate-llms
25
- name: update-liara
26
env:
27
LIARA_TOKEN: ${{ secrets.IRAN_API_TOKEN }}
Dockerfile
@@ -1,9 +1,6 @@
1
# 1) Build
2
FROM node:18-alpine AS builder
3
4
-# Install git for change detection
5
-RUN apk add --no-cache git
6
-
7
ARG MY_BASE_URL
8
ARG MY_API_KEY
9
@@ -16,8 +13,6 @@ COPY package*.json /app/
13
14
RUN npm ci
-COPY .git /app/.git
COPY . /app/
RUN npm run build
0 commit comments