Now yes
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 15s

This commit is contained in:
2026-05-02 18:39:23 +02:00
parent eaac266ebb
commit 2023542229
3 changed files with 6 additions and 3 deletions

View File

@@ -34,7 +34,11 @@ jobs:
- name: Build frontend - name: Build frontend
run: | run: |
docker build -t git.aranroig.com/${{ secrets.REGISTRY_USER }}/dragonroll-frontend:latest ./frontend docker build -t git.aranroig.com/${{ secrets.REGISTRY_USER }}/dragonroll-frontend:latest \
--build-arg NUXT_PUBLIC_GIT_COMMIT=$(git rev-parse --short HEAD) \
--build-arg NUXT_PUBLIC_GIT_TAG=$(git describe --tags --abbrev=0) \
--build-arg NUXT_PUBLIC_GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD) \
./frontend
docker push git.aranroig.com/${{ secrets.REGISTRY_USER }}/dragonroll-frontend:latest docker push git.aranroig.com/${{ secrets.REGISTRY_USER }}/dragonroll-frontend:latest
- name: Build backend - name: Build backend

View File

@@ -1,4 +1,5 @@
node_modules node_modules
.git
.gitignore .gitignore
Dockerfile Dockerfile
.dockerignore .dockerignore

View File

@@ -6,8 +6,6 @@ WORKDIR /app
# Copy package files # Copy package files
COPY package*.json ./ COPY package*.json ./
RUN apk add --no-cache git
# Install dependencies # Install dependencies
RUN npm install RUN npm install