Browse Source

Update linux.yml

Eugene Pankov 6 years ago
parent
commit
e5575f93fb
1 changed files with 4 additions and 4 deletions
  1. 4 4
      .github/workflows/linux.yml

+ 4 - 4
.github/workflows/linux.yml

@@ -45,13 +45,13 @@ jobs:
     - name: Package artifacts
       run: |
         mkdir artifact-deb
-        mv dist/*.deb artifact-deb/
+        mv dist/*.deb artifact-deb/ || true
         mkdir artifact-rpm
-        mv dist/*.rpm artifact-rpm/
+        mv dist/*.rpm artifact-rpm/ || true
         mkdir artifact-snap
-        mv dist/*.snap artifact-snap/
+        mv dist/*.snap artifact-snap/ || true
         mkdir artifact-tar.gz
-        mv dist/*.tar.gz artifact-tar.gz/
+        mv dist/*.tar.gz artifact-tar.gz/ || true
 
     - uses: actions/upload-artifact@master
       name: Upload DEB