Compare commits
1 commit
main
...
renovate/a
Author | SHA1 | Date | |
---|---|---|---|
|
d48f0c88a7 |
3 changed files with 4 additions and 5 deletions
|
@ -5,7 +5,6 @@ on:
|
|||
branches:
|
||||
- gold
|
||||
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
@ -79,7 +79,7 @@ jobs:
|
|||
cache: 'npm'
|
||||
|
||||
- name: Download build artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: build
|
||||
path: dist
|
||||
|
@ -113,7 +113,7 @@ jobs:
|
|||
cache: 'npm'
|
||||
|
||||
- name: Download build artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: build
|
||||
path: dist
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue