We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96322ba commit 246febeCopy full SHA for 246febe
.github/workflows/backup.yml
@@ -69,17 +69,12 @@ jobs:
69
run: chmod 0600 $HOME/backup
70
- name: change version
71
run: echo "3.8.0" > $HOME/version
72
- - name: Add jq to path
73
- run: |
74
- jq=$(which jq)
75
- echo $jq
76
- echo $PATH
77
- export PATH=$PATH:$jq
78
- command -v jq
79
80
81
- name: Perform backup
82
run: |
+ jq=$(command -v jq)
+ export PATH=$PATH:$jq
+ echo $PATH
83
docker run -e "GHE_HOSTNAME=${{ inputs.hostname }}" \
84
-e "GHE_DATA_DIR=/data" \
85
-e "GHE_EXTRA_SSH_OPTS=-p 122 -i /ghe-ssh/id_rsa -o ServerAliveInterval=30 -o ServerAliveCountMax=12000 -o StrictHostKeyChecking=no" \
0 commit comments