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 1f31d84 commit a9baa5aCopy full SHA for a9baa5a
.github/workflows/spec.yml
@@ -38,3 +38,18 @@ jobs:
38
- name: Build the specification
39
run: |
40
bundle exec jekyll build
41
+
42
+ # Deploy
43
+ - name: Deployment
44
+ env:
45
+ USER_FOR_TEST: ${{ secrets.SPEC_DEPLOY_USER }}
46
+ if: ${{ env.USER_FOR_TEST != '' }}
47
+ uses: burnett01/rsync-deployments@6.0.0
48
+ with:
49
+ switches: -rzv
50
+ path: docs/_spec/_site/
51
+ remote_path: ${{ secrets.SPEC_DEPLOY_PATH }}
52
+ remote_host: ${{ secrets.SPEC_DEPLOY_HOST }}
53
+ remote_user: ${{ secrets.SPEC_DEPLOY_USER }}
54
+ remote_key: ${{ secrets.SPEC_DEPLOY_KEY }}
55
+ remote_key_pass: ${{ secrets.SPEC_DEPLOY_PASS }}
0 commit comments