File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1- FROM node:10.14.2-alpine as base
1+ FROM node:fermium-slim as base
22
33LABEL "com.github.actions.name" ="Vuepress deploy"
44LABEL "com.github.actions.description" ="A GitHub Action to build and deploy Vuepress sites to GitHub Pages"
@@ -9,7 +9,7 @@ LABEL "repository"="https://github.com/jenkey2011/vuepress-deploy"
99LABEL "homepage" ="https://github.com/jenkey2011/vuepress-deploy"
1010LABEL "maintainer" ="Jenkey2011 <jenkey2011@163.com>"
1111
12- RUN apk add --no-cache git jq
12+ RUN apt-get update && apt-get install -y git jq
1313
1414COPY entrypoint.sh /entrypoint.sh
1515ENTRYPOINT ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change 1- #! /bin/sh
1+ #! /bin/bash
22
33set -e
44
5- echo ' ' # see https://github.com/actions/toolkit/issues/168
5+ echo ' '
6+
7+ # env
8+ echo " node version: $( node -v) "
9+ echo " npm version: $( npm -v) "
610
711# Build vuepress project
812echo " ==> Start building \n $BUILD_SCRIPT "
You can’t perform that action at this time.
0 commit comments