From b7a7805262d68c9af4d2c28609ef72f9846a0cde Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 14 Dec 2021 22:59:27 +0100 Subject: [PATCH] Re-upload rebuilt files (#1676) Make sure to overwrite existing files on upload. This allows to trigger rebuilds and have the latest builds on the os-builds server. Note: When using GitHub Actions, the release/ directory is cleared at the beginning (by the checkout action, which has the clean option set by default which also causes files in .gitignore to be deleted). --- .github/workflows/dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 6f10fe94d..157302b0a 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -112,7 +112,7 @@ jobs: uses: burnett01/rsync-deployments@4.1 with: rsh: -q - switches: -aW --ignore-existing + switches: -aW path: release/ remote_path: ${{ secrets.DEV_TARGET_PATH }}/${{ needs.prepare.outputs.version_main }}.${{ needs.prepare.outputs.version_dev }}/ remote_host: ${{ secrets.DEV_HOST }}