Compare commits

...

10 Commits

Author SHA1 Message Date
l-nmch
68ab06ea53 Trying things
Some checks failed
Docker Build and Push / build (push) Failing after 1m39s
2025-10-26 13:25:28 +01:00
l-nmch
6938dafb85 Trying things 2025-10-26 13:16:52 +01:00
l-nmch
c08ca9a16e Trying things 2025-10-26 13:15:24 +01:00
l-nmch
950f525c99 Trying things 2025-10-26 13:09:44 +01:00
l-nmch
5b126cd087 Trying things 2025-10-26 13:03:59 +01:00
l-nmch
bbb12ff3c4 Trying things 2025-10-26 12:57:48 +01:00
l-nmch
597bae7dc7 Trying things 2025-10-26 12:56:19 +01:00
l-nmch
306bc6db51 Trying things 2025-10-26 12:55:12 +01:00
l-nmch
20924e759c Trying things 2025-10-26 12:53:11 +01:00
l-nmch
e327da2f53 Trying things 2025-10-26 12:47:38 +01:00
2 changed files with 8 additions and 1 deletions

View File

@@ -18,7 +18,13 @@ jobs:
- name: Build appjs
run: |
make appjs
REPO_ROOT=$(git rev-parse --show-toplevel)
echo "Repo root: $REPO_ROOT"
docker run --rm \
-v "$REPO_ROOT/app:/workdir" \
-w /workdir \
-e NPM_CONFIG_CACHE=/tmp \
node:14.0-slim sh -c "ls -la && npm install && npm run build"
- name: Log in to Docker Registry
uses: docker/login-action@v3

View File

@@ -26,6 +26,7 @@ version:
sed -i "s/kube-ops-view:.*/kube-ops-view:$(VERSION)/" deploy/*.yaml
appjs:
echo $(TTYFLAGS)
docker run $(TTYFLAGS) -u $$(id -u) -v $$(pwd):/workdir -w /workdir/app -e NPM_CONFIG_CACHE=/tmp node:14.0-slim npm install
docker run $(TTYFLAGS) -u $$(id -u) -v $$(pwd):/workdir -w /workdir/app -e NPM_CONFIG_CACHE=/tmp node:14.0-slim npm run build