diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 72b4710..a1c6c78 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -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 - - + diff --git a/deploy/local-deploy.sh b/deploy/local-deploy.sh deleted file mode 100755 index 77189ad..0000000 --- a/deploy/local-deploy.sh +++ /dev/null @@ -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' diff --git a/deploy/prepare-deploy.sh b/deploy/prepare-deploy.sh index 6a80baa..5bb412a 100755 --- a/deploy/prepare-deploy.sh +++ b/deploy/prepare-deploy.sh @@ -17,7 +17,6 @@ done rm ./bin/phpunit APP_ENV=prod composer install --no-dev -a -rm -rf ./var/cache -cd - + diff --git a/deploy/update.sh b/deploy/update.sh old mode 100755 new mode 100644