File tree 2 files changed +1
-19
lines changed
2 files changed +1
-19
lines changed Original file line number Diff line number Diff line change 43
43
steps :
44
44
- uses : actions/checkout@v2
45
45
46
- - uses : actions/setup-java@v1
47
- with :
48
- java-version : ' 9.0.4'
49
- java-package : jdk
50
- architecture : x64
51
-
52
46
- uses : actions/cache@v1
53
47
with :
54
48
path : ~/.npm
@@ -113,12 +107,6 @@ jobs:
113
107
steps :
114
108
- uses : actions/checkout@v2
115
109
116
- - uses : actions/setup-java@v1
117
- with :
118
- java-version : ' 9.0.4'
119
- java-package : jdk
120
- architecture : x64
121
-
122
110
- name : Use Node.js
123
111
uses : actions/setup-node@v1
124
112
with :
@@ -160,12 +148,6 @@ jobs:
160
148
with :
161
149
token : ${{ secrets.GH_TOKEN }}
162
150
163
- - uses : actions/setup-java@v1
164
- with :
165
- java-version : ' 9.0.4'
166
- java-package : jdk
167
- architecture : x64
168
-
169
151
- name : Semantic Release
170
152
171
153
id : semantic
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM node:13-alpine
3
3
WORKDIR /app
4
4
COPY . .
5
5
6
- RUN apk add --no-cache --virtual .build-deps alpine-sdk python git
6
+ RUN apk add --no-cache --virtual .build-deps alpine-sdk python git openjdk8-jre
7
7
RUN echo "GIT_TAG=$(git tag --points-at HEAD)" >> .env
8
8
RUN npm config set unsafe-perm true && npm install --unsafe-perm && npm run build --unsafe-perm && npm prune --production
9
9
RUN apk del .build-deps
You can’t perform that action at this time.
0 commit comments