File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5151 restore-keys : |
5252 ${{ runner.os }}-node-modules-${{ hashFiles('./package.json') }}-
5353 - name : Yarn build
54- run : yarn install --frozen-lockfile
54+ run : yarn install --frozen-lockfile || yarn install --frozen-lockfile
5555
5656 - name : Get package version
5757 id : get_package_version
Original file line number Diff line number Diff line change @@ -222,7 +222,8 @@ ENV CHROMIUM_PATH=/usr/bin/chromium-browser-unstable
222222ENTRYPOINT ["/app/entrypoint.sh" ]
223223
224224COPY package.json yarn.lock /app/
225- RUN PUPPETEER_SKIP_DOWNLOAD=true yarn install --frozen-lockfile --production
225+ ENV PUPPETEER_SKIP_DOWNLOAD=true
226+ RUN yarn install --frozen-lockfile --production || yarn install --frozen-lockfile --production
226227
227228COPY scripts /app/scripts/
228229COPY app.min.js entrypoint.sh /app/
You can’t perform that action at this time.
0 commit comments