We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2369c06 commit e53c0ccCopy full SHA for e53c0cc
.github/workflows/dnscontrol.yml
@@ -45,13 +45,7 @@ jobs:
45
- name: Apply DNSControl changes
46
run: nix run ".#dnscontrol" -- push
47
48
- - name: Copy zone files
49
- uses: burnett01/rsync-deployments@7.0.1
50
- with:
51
- switches: -avzr --delete-after
52
- path: zones/
53
- remote_path: /ltnet-zones/
54
- remote_host: rsync-ci.xuyh0120.win
55
- remote_port: 2222
56
- remote_user: ci
57
- remote_key: ${{ secrets.DEPLOY_KEY }}
+ - name: Rsync zone files over SSH
+ run: |
+ sudo apt-get install -y rsync
+ rsync -avzr --delete-after -e "ssh -p2222" zones/ ci@rsync-ci.xuyh0120.win:/ltnet-zones/
0 commit comments