Compare commits

..

1 commit

Author SHA1 Message Date
Renovate Bot
f229510108 Update actions/upload-artifact action to v4
Some checks failed
Run Tests / Prepare environment (pull_request) Has been cancelled
Run Tests / Run unit tests (pull_request) Has been cancelled
Run Tests / Run E2E tests (chrome) (pull_request) Has been cancelled
Run Tests / Run E2E tests (edge) (pull_request) Has been cancelled
Run Tests / Run E2E tests (firefox) (pull_request) Has been cancelled
2025-04-06 04:01:17 +00:00
3 changed files with 3 additions and 4 deletions

View file

@ -5,7 +5,6 @@ on:
branches:
- gold
jobs:
publish:
runs-on: ubuntu-latest

View file

@ -59,7 +59,7 @@ jobs:
run: npm run build
- name: Save build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build
path: dist

View file

@ -1,7 +1,7 @@
# build stage
FROM node:lts-alpine AS build-stage
WORKDIR ./app
COPY package.json ./
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm i
COPY . .
RUN npm run build