Skip to content

Commit

Permalink
maps-build: replace scp with rsync
Browse files Browse the repository at this point in the history
  • Loading branch information
lordfolken authored Aug 20, 2023
1 parent 052cf30 commit 34ae7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/maps-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: ssh-keyscan -p ${{ secrets.DEPLOY_PORT }} ${{ secrets.DEPLOY_HOST }} >> ~/.ssh/known_hosts

- name: copy checksums file from xcsoar's mapgen repo
run: scp -P ${{ secrets.REPO_PORT }} ${{ secrets.REPO_USER }}@${{ secrets.REPO_HOST }}:${{ secrets.REPO_PATH }}/checksums $GITHUB_WORKSPACE/checksums
run: rsync -v ${{ secrets.REPO_USER }}@${{ secrets.REPO_HOST }}:${{ secrets.REPO_PATH }}/checksums $GITHUB_WORKSPACE/checksums

- name: update checksums of maps.config.js
run: cd data && $GITHUB_WORKSPACE/bin/replacechecksum maps.config.js $GITHUB_WORKSPACE/checksums
Expand Down

0 comments on commit 34ae7e2

Please sign in to comment.