André Menrath
ebfef6461f
Some checks failed
Deploy to https://wordpress-test.event-federation.eu/ / deploy (push) Failing after 7s
22 lines
643 B
YAML
22 lines
643 B
YAML
# .github/workflows/deploy_wordpress_test1.yml
|
|
|
|
name: Deploy to https://wordpress-test.event-federation.eu/
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
if: secrets.SSH_PRIVATE_KEY != ''
|
|
|
|
steps:
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
|
- run: |
|
|
mkdir ~/.ssh
|
|
apt update && apt add openssh-client rsync
|
|
eval $(ssh-agent -s)
|
|
echo "${{ secrets.SSH_PRIVATE_KEY }}" | ssh-add -
|
|
rsync -avzr --delete . hosting187597@hosting187597.a2f96.netcup.net ~/wordpress-test.event-federation.eu/wp-content/plugins/activitypub-event-transformers
|