Skip to content

Commit a4cb366

Browse files
committed
update mdx-to-md
1 parent 9a31d70 commit a4cb366

4 files changed

Lines changed: 8 additions & 1123 deletions

File tree

.github/workflows/liara.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ jobs:
1515
node-version: "20"
1616
- name: install-dependencies
1717
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
1825
- name: update-liara
1926
env:
2027
LIARA_TOKEN: ${{ secrets.IRAN_API_TOKEN }}

Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# 1) Build
22
FROM node:18-alpine AS builder
33

4-
# Install git for change detection
5-
RUN apk add --no-cache git
6-
74
ARG MY_BASE_URL
85
ARG MY_API_KEY
96

@@ -16,8 +13,6 @@ COPY package*.json /app/
1613

1714
RUN npm ci
1815

19-
COPY .git /app/.git
20-
2116
COPY . /app/
2217

2318
RUN npm run build

0 commit comments

Comments
 (0)