17 lines
324 B
YAML
17 lines
324 B
YAML
name: GitOps Automatic Deployment
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Rsync to GitOps Folder Target
|
|
run: |
|
|
rsync -av --delete --exclude '.git/' ./ /Gitops_Destination/ |