Compare commits
No commits in common. "57b4e330281db40bc9d76f7e8221a77937b1c225" and "14bb4a15421fcac9c07c43a6ea6cc9468c389896" have entirely different histories.
57b4e33028
...
14bb4a1542
4 changed files with 2 additions and 30 deletions
|
@ -18,27 +18,6 @@ jobs:
|
|||
git checkout ${{ github.head_ref }}
|
||||
- name: prepare deploy
|
||||
run: sh ./deploy/prepare-deploy.sh
|
||||
- name: deploy
|
||||
env:
|
||||
HOST: 'web.server.c3h'
|
||||
USERNAME: 'c3h-futtern'
|
||||
TARGETDIR: '/home/c3h-futtern/futtern'
|
||||
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
run: |
|
||||
mkdir -p ~/.ssh/
|
||||
# Print the SSH key, replacing newline characters with actual new lines
|
||||
echo "$SSH_PRIVATE_KEY" | tr -d '\r' > ~/.ssh/id_rsa
|
||||
# Set appropriate permissions for the SSH key
|
||||
chmod 600 ~/.ssh/id_rsa
|
||||
# Add the remote host's key to the known_hosts file to avoid authenticity confirmation
|
||||
ssh-keyscan -H $HOST >> ~/.ssh/known_hosts
|
||||
# stop services
|
||||
ssh ${USERNAME}@${HOST} systemctl --user stop pod-futtern
|
||||
# SCP files to the remote host
|
||||
rsync -avz --delete deploy/ ${USERNAME}@${HOST}:${TARGETDIR} --exclude=var
|
||||
# run update script
|
||||
ssh ${USERNAME}@${HOST} /home/c3h-futtern/futtern/update.sh
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
. ./deploy/prepare-deploy.sh
|
||||
ssh leitstelle-futtern 'systemctl --user stop pod-futtern'
|
||||
rsync -avz --delete deploy/ leitstelle-futtern:futtern --exclude=var
|
||||
ssh leitstelle-futtern '/home/c3h-futtern/futtern/update.sh'
|
|
@ -17,7 +17,6 @@ done
|
|||
|
||||
rm ./bin/phpunit
|
||||
APP_ENV=prod composer install --no-dev -a
|
||||
rm -rf ./var/cache
|
||||
|
||||
cd -
|
||||
|
||||
|
||||
|
|
0
deploy/update.sh
Executable file → Normal file
0
deploy/update.sh
Executable file → Normal file
Loading…
Reference in a new issue