write release workflow file
This commit is contained in:
parent
14bb4a1542
commit
b6e0ef44f4
1 changed files with 22 additions and 1 deletions
|
@ -18,6 +18,27 @@ jobs:
|
||||||
git checkout ${{ github.head_ref }}
|
git checkout ${{ github.head_ref }}
|
||||||
- name: prepare deploy
|
- name: prepare deploy
|
||||||
run: sh ./deploy/prepare-deploy.sh
|
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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue