mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-09-11 18:41:50 +00:00
Compare commits
7
Commits
dev
...
production
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a25f6d398 | ||
|
|
322906ff70 | ||
|
|
935f8ef7d8 | ||
|
|
92785965b2 | ||
|
|
405f030364 | ||
|
|
a9b088dcda | ||
|
|
5c089a4325 |
@@ -0,0 +1,23 @@
|
||||
name: Deploy production branch to dtfb.de
|
||||
on:
|
||||
push:
|
||||
branches: ['production']
|
||||
paths: ['src/structure/**']
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: rsync deployments
|
||||
uses: burnett01/rsync-deployments@7.0.1
|
||||
with:
|
||||
switches: -avzr
|
||||
path: src/structure/
|
||||
remote_path: ${{ secrets.DTFB_PROD_PATH }}
|
||||
remote_host: ${{ secrets.DTFB_PROD_HOST }}
|
||||
remote_port: ${{ secrets.DTFB_PROD_PORT }}
|
||||
remote_user: ${{ secrets.DTFB_PROD_USER }}
|
||||
remote_key: ${{ secrets.DTFB_PROD_KEY }}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
name: Deploy production branch to kickern-hamburg.de
|
||||
on:
|
||||
push:
|
||||
branches: ['production']
|
||||
paths: ['src/structure/**']
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: rsync deployments
|
||||
uses: burnett01/rsync-deployments@7.0.1
|
||||
with:
|
||||
switches: -avzr
|
||||
path: src/structure/
|
||||
remote_path: ${{ secrets.KICKERN_PROD_PATH }}
|
||||
remote_host: ${{ secrets.KICKERN_PROD_HOST }}
|
||||
remote_port: ${{ secrets.KICKERN_PROD_PORT }}
|
||||
remote_user: ${{ secrets.KICKERN_PROD_USER }}
|
||||
remote_key: ${{ secrets.KICKERN_PROD_KEY }}
|
||||
|
||||
Reference in New Issue
Block a user