Switch argument passing, add restart nginx

This commit is contained in:
Annika Backstrom 2024-05-18 23:55:01 +01:00
parent d1965cf276
commit 0ac14c6c99
Signed by: annika
GPG Key ID: 3561F004DE1D9AFE
2 changed files with 15 additions and 7 deletions

View File

@ -9,9 +9,14 @@ inputs:
deploy_path: deploy_path:
description: 'Deploy path' description: 'Deploy path'
required: true required: true
restart_nginx:
description: 'Restart nginx'
default: no
required: false
runs: runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'
args: env:
- ${{ inputs.local_path }} INPUT_LOCAL_PATH: ${{ inputs.local_path }}
- ${{ inputs.deploy_path }} INPUT_DEPLOY_PATH: ${{ inputs.deploy_path }}
INPUT_RESTART_NGINX: ${{ inputs.restart_nginx }}

View File

@ -1,8 +1,11 @@
#!/bin/sh -l #!/bin/sh -l
LOCAL_PATH="$1" env
DEPLOY_PATH="$2"
rsync -hrz --delete -C --exclude=".*" -e ssh "$LOCAL_PATH" "deploy.sixohthree.com:/tmp/gitea_${GITHUB_RUN_NUMBER}_${GITHUB_SHA}" rsync -hrz --delete -C --exclude=".*" -e ssh "$INPUT_LOCAL_PATH" "deploy.sixohthree.com:/tmp/gitea_${GITHUB_RUN_NUMBER}_${GITHUB_SHA}"
ssh deploy.sixohthree.com "dsh -M -c -r ssh -g webs -- rsync -hvrz --delete -C -e ssh deploy.sixohthree.com:/tmp/gitea_${GITHUB_RUN_NUMBER}_${GITHUB_SHA}/ $DEPLOY_PATH" ssh deploy.sixohthree.com "dsh -M -c -r ssh -g webs -- rsync -hvrz --delete -C -e ssh deploy.sixohthree.com:/tmp/gitea_${GITHUB_RUN_NUMBER}_${GITHUB_SHA}/ $INPUT_DEPLOY_PATH"
ssh deploy.sixohthree.com "rm -rf /tmp/gitea_${GITHUB_RUN_NUMBER}_${GITHUB_SHA}" ssh deploy.sixohthree.com "rm -rf /tmp/gitea_${GITHUB_RUN_NUMBER}_${GITHUB_SHA}"
if [ "$INPUT_RESTART_NGINX" ]; then
ssh deploy.sixohthree.com "dsh -M -c -r ssh -g webs -- sudo systemctl reload nginx"
fi