File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ name: Test deploy
22
33on :
44 workflow_dispatch :
5- push :
5+ pull_request :
66 branches :
7- - master
7+ - master
8+ - develop
89
910jobs :
1011 # preflight-checks:
7576 sudo docker tag strapi-playground:latest strapi-playground:$STRAPI_LATEST_IMAGE
7677 dokku git:from-image strapi strapi-playground:$STRAPI_LATEST_IMAGE
7778 sudo docker system prune --all --force
79+ sudo rm -rf /var/lib/dokku/data/storage/strapi/docker-images/playground/strapi-playground-latest.tar
7880
Original file line number Diff line number Diff line change @@ -4,7 +4,11 @@ RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev l
44
55WORKDIR /opt/
66COPY ./package.json ./yarn.lock ./
7- COPY ./.yalc ./.yalc
7+
8+ WORKDIR /opt/node_modules/
9+ COPY ./.yalc ./
10+
11+ WORKDIR /opt/
812RUN npm config set fetch-retry-maxtimeout 600000 -g && yarn install
913
1014WORKDIR /opt/app
Original file line number Diff line number Diff line change 11module . exports = {
22 webtools : {
3- enabled : false ,
3+ enabled : true ,
44 config : {
55 website_url : 'https://www.pluginpal.io'
66 }
77 } ,
88
99 'webtools-addon-sitemap' : {
10- enabled : false ,
10+ enabled : true ,
1111 } ,
1212
1313 // 'webtools-addon-redirects': {
You can’t perform that action at this time.
0 commit comments