소스 검색

ci(linux): copy should ignore missing files (#829)

Baptiste Augrain 3 년 전
부모
커밋
f1dd2cf1cc
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      .github/workflows/linux.yml

+ 3 - 3
.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