We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62d1b08 commit becd991Copy full SHA for becd991
1 file changed
.github/workflows/deploy.yml
@@ -8,21 +8,15 @@ on:
8
9
jobs:
10
deploy:
11
- runs-on: ubuntu-latest
+ runs-on: self-hosted
12
name: Deploy Docs
13
14
steps:
15
- - name: Deploy to Primary Server
16
- uses: appleboy/ssh-action@v1.0.3
17
- with:
18
- host: ${{ secrets.DEPLOY_HOST }}
19
- username: ${{ secrets.DEPLOY_USER }}
20
- key: ${{ secrets.DEPLOY_KEY }}
21
- port: 22
22
- script: |
23
- echo "Starting docs deployment..."
24
- /opt/Lokus-Prod/scripts/deploy-docs.sh
25
- echo "Deployment complete!"
+ - name: Deploy Docs
+ run: |
+ echo "Starting docs deployment..."
+ /opt/Lokus-Prod/scripts/deploy-docs.sh
+ echo "Deployment complete!"
26
27
- name: Discord Notification
28
if: always()
0 commit comments