File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed
Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -69,19 +69,12 @@ jobs:
6969 username : ${{ env.LNBITS_DROPLET_USER }}
7070 key : ${{ env.LNBITS_DROPLET_SSH_KEY }}
7171 script_stop : true
72- debug : true
7372 script : |
74- set -euo pipefail
75- if [ ! -d ~/coinpayportal ]; then
76- git clone https://github.com/profullstack/coinpayportal.git ~/coinpayportal
77- cd ~/coinpayportal
78- sudo bash scripts/setup-droplet.sh
79- else
80- cd ~/coinpayportal
81- git fetch origin master
82- git reset --hard origin/master
83- sudo bash scripts/deploy-lnbits.sh
84- fi
73+ set -x
74+ cd ~/coinpayportal || exit 1
75+ git fetch origin master 2>&1
76+ git reset --hard origin/master 2>&1
77+ sudo bash scripts/deploy-lnbits.sh 2>&1
8578
8679 - name : Verify LNURLp endpoint
8780 shell : bash
You can’t perform that action at this time.
0 commit comments