Compare commits

..

1 commit

Author SHA1 Message Date
Renovate Bot
d48f0c88a7 Update actions/download-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 03:03:15 +00:00
3 changed files with 4 additions and 5 deletions

View file

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

View file

@ -79,7 +79,7 @@ jobs:
cache: 'npm' cache: 'npm'
- name: Download build artifact - name: Download build artifact
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
name: build name: build
path: dist path: dist
@ -113,7 +113,7 @@ jobs:
cache: 'npm' cache: 'npm'
- name: Download build artifact - name: Download build artifact
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
name: build name: build
path: dist path: dist

View file

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