File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 2828 neo4j-version: 'latest'
2929 structr-version: '5.2.1'
3030 structr-webapp-path: '${{ github.workspace }}/webapp'
31+ structr-conf-file: '${{ github.workspace }}/structr.conf'
3132 structr-license: '${{ secrets.STRUCTR_LICENSE }}'
3233```
Original file line number Diff line number Diff line change 4545 run : >-
4646 ./setup_environment.sh ${{ github.action_path }} &&
4747 cd ${{ github.action_path }} && docker compose up -d
48-
4948 shell : bash
5049
5150 - name : Deploy given webapp
5251 run : cd ${{ github.action_path }} && ./deploy.sh
53- shell : bash
52+ shell : bash
Original file line number Diff line number Diff line change @@ -8,8 +8,9 @@ sed -i "s|STRUCTR_LICENSE|$STRUCTR_LICENSE|g" docker-compose.yml &&
88sed -i " s|STRUCTR_VERSION|$STRUCTR_VERSION |g" docker-compose.yml &&
99sed -i " s|STRUCTR_WEBAPP_PATH|$STRUCTR_WEBAPP_PATH |g" docker-compose.yml &&
1010
11- if [ -z ${STRUCTR_CONF_FILE:- " ./structr.conf" } ]; then
11+ if [ -z " $STRUCTR_CONF_FILE " ]; then
12+ STRUCTR_CONF_FILE=" ./structr.conf"
1213 touch ./structr.conf
1314fi
1415
15- sed -i " s|STRUCTR_CONF_FILE|$STRUCTR_CONF_FILE |g" docker-compose.yml
16+ sed -i " s|STRUCTR_CONF_FILE|$STRUCTR_CONF_FILE |g" docker-compose.yml
You can’t perform that action at this time.
0 commit comments