Try using strip.components with drone-scp
This should, in theory, strip out the leading docs directory when doing the copy.
This commit is contained in:
parent
29d01a00c5
commit
bff3a777ae
9
.github/workflows/docs-deploy.yml
vendored
9
.github/workflows/docs-deploy.yml
vendored
@ -8,11 +8,6 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Prepare documentation for copy
|
||||
run: |
|
||||
ls | grep -v docs | xargs rm -r
|
||||
cp -r docs/* .
|
||||
rm -r docs
|
||||
- name: SCP to documentation server
|
||||
uses: appleboy/scp-action@v0.0.1
|
||||
env:
|
||||
@ -20,4 +15,6 @@ jobs:
|
||||
KEY: ${{ secrets.DOCUMENTATION_SSH_KEY }}
|
||||
HOST: ${{ secrets.DOCUMENTATION_SSH_HOST }}
|
||||
TARGET: "/var/www/select2-docs/user"
|
||||
SOURCE: "*"
|
||||
SOURCE: "docs/*"
|
||||
args:
|
||||
"--strip.components 1"
|
Loading…
Reference in New Issue
Block a user