modify rsync jobs for docs to try to stop them deleting each other's work (#459)
* modify rsync jobs for docs to try to stop them deleting each other's work * fix remote paths
This commit is contained in:
parent
7e101ed617
commit
5cfd3e2ac3
2 changed files with 4 additions and 4 deletions
4
.github/workflows/publish-1.0-docs.yml
vendored
4
.github/workflows/publish-1.0-docs.yml
vendored
|
|
@ -68,8 +68,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
upload: true
|
upload: true
|
||||||
switches: --archive --compress --update --delete --progress --relative
|
switches: --archive --compress --update --delete --progress --relative
|
||||||
local_path: target/nightly-docs/./docs/pekko/ # The intermediate dot is to show `--relative` which paths to operate on
|
local_path: target/nightly-docs/./docs/pekko/1.0.0 # The intermediate dot is to show `--relative` which paths to operate on
|
||||||
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/pekko/
|
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/pekko/1.0.0
|
||||||
remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
|
remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
|
||||||
remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}
|
remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}
|
||||||
remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }}
|
remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }}
|
||||||
|
|
|
||||||
4
.github/workflows/publish-nightly.yml
vendored
4
.github/workflows/publish-nightly.yml
vendored
|
|
@ -79,8 +79,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
upload: true
|
upload: true
|
||||||
switches: --archive --compress --update --delete --progress --relative
|
switches: --archive --compress --update --delete --progress --relative
|
||||||
local_path: target/nightly-docs/./docs/pekko/ # The intermediate dot is to show `--relative` which paths to operate on
|
local_path: target/nightly-docs/./docs/pekko/${{ github.ref_name }}-snapshot # The intermediate dot is to show `--relative` which paths to operate on
|
||||||
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/pekko/
|
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/pekko/${{ github.ref_name }}-snapshot
|
||||||
remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
|
remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
|
||||||
remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}
|
remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}
|
||||||
remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }}
|
remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue