diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 49465e6a..fc1ecc47 100644 --- a/.github/workflows/linux.yml +++ b/.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