From f1dd2cf1ccbebe97b20cd370b756cfae2f2676a7 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Thu, 9 Sep 2021 02:41:56 +0200 Subject: [PATCH] ci(linux): copy should ignore missing files (#829) --- .github/workflows/linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 51a7d02..a6d45f2 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -88,9 +88,9 @@ jobs: - name: Move/rename build artifacts run: | - cp out/*.AppImage* . - cp vscode/.build/linux/deb/*/deb/*.deb . - cp vscode/.build/linux/rpm/*/*.rpm . + cp -f out/*.AppImage* . + cp -f vscode/.build/linux/deb/*/deb/*.deb . + cp -f vscode/.build/linux/rpm/*/*.rpm . if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes' - name: Generate shasums