Skip to content

Commit 60f9c22

Browse files
committed
feat: first init of reworked gls action
1 parent c2e9cd3 commit 60f9c22

132 files changed

Lines changed: 5797 additions & 14409 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.tool-versions

Lines changed: 0 additions & 2 deletions
This file was deleted.

actions/gls-action/.example.env

Lines changed: 0 additions & 4 deletions
This file was deleted.

actions/gls-action/.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
.env
1+
.env
2+
node_modules/
3+
dist/

actions/gls-action/Dockerfile

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,12 @@ FROM node:24-alpine
22

33
WORKDIR /app
44

5-
COPY code0-tech-* ./
5+
COPY package.json package-lock.json* ./
66

7-
COPY package.json package-lock.json tsconfig.base.json turbo.json ./
7+
RUN npm install
88

9-
COPY actions/gls-action ./actions/gls-action
10-
11-
RUN npm ci
12-
13-
WORKDIR /app/actions/gls-actions
9+
COPY . .
1410

1511
RUN npm run build
1612

17-
18-
CMD ["npm", "run", "start", "-w", "@code0-tech/gls-action"]
13+
CMD ["npm", "run", "start"]

0 commit comments

Comments
 (0)