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 780d30b commit f1fbb21Copy full SHA for f1fbb21
.github/workflows/test-deployment.yml
@@ -55,3 +55,13 @@ jobs:
55
port: ${{ secrets.SERVER_SSH_PORT }}
56
source: main/*
57
target: /var/www/webface/
58
+ - name: Make correct folder structure
59
+ uses: appleboy/ssh-action@v1.2.0
60
+ with:
61
+ host: ${{ secrets.SERVER_NAME }}
62
+ username: ${{ secrets.USERNAME }}
63
+ key: ${{ secrets.SERVER_SSH_KEY }}
64
+ port: ${{ secrets.SERVER_SSH_PORT }}
65
+ script: |
66
+ cp -r /var/www/webface/main/* /var/www/webface/
67
+ rm -r /var/www/webface/main
0 commit comments