wordpress-activitypub-event.../.forgejo/workflows/deploy.yml
André Menrath 258e5797cc
Some checks failed
Deploy to https://wordpress-test.event-federation.eu/ / deploy (push) Failing after 12s
actions test
2023-11-25 12:33:29 +01:00

35 lines
887 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:
- name: Checkout Repository
uses: https://code.forgejo.org/actions/checkout@v4
- name: Install rsync
run: apt update && apt install -y rsync
- name: Test rsync
run: rsync --help
- name: Deploy via rsync
uses: https://github.com/burnett01/rsync-deployments@6.0.0
with:
switches: -avzr --delete
path: ./
remote_path: ~/wordpress-test.event-federation.eu/wp-content/plugins/activitypub-event-transformers
remote_host: hosting187597.a2f96.netcup.net
remote_user: hosting187597
remote_key: ${{ secrets.SSH_PRIVATE_KEY }}