@mstruebing @klaernie @theoludwig
Hello,
This is a follow-up issue to #409.
In version v3.0.3, .tar.gz files for Windows were supported, as shown below:

However, in v3.1.0 and v3.1.1, .tar.gz files for Windows are no longer supported. Instead, only .zip files are available, as seen in the screenshot below:

In editorconfig-checker.javascript, the code still tries to locate .tar.gz files:
https://github.com/editorconfig-checker/editorconfig-checker.javascript/blob/c78ecb0c123a71888e1165d17bfc22daf40ceb0d/src/release.ts#L18
const matchedAsset = release.data.assets.find(({ name }) => {
return name.startsWith(releasePrefix) && name.endsWith(".tar.gz")
})
As a result, this causes an error like the one below:

I believe there are two possible solutions:
- Add
.tar.gz support back to the assets.
- Update
editorconfig-checker.javascript to support resolving .zip files.
If the second solution is acceptable, I would be happy to create a pull request for it. Please let me know once a decision has been made.
@mstruebing @klaernie @theoludwig
Hello,
This is a follow-up issue to #409.
In version v3.0.3,
.tar.gzfiles for Windows were supported, as shown below:However, in v3.1.0 and v3.1.1,
.tar.gzfiles for Windows are no longer supported. Instead, only.zipfiles are available, as seen in the screenshot below:In
editorconfig-checker.javascript, the code still tries to locate.tar.gzfiles:https://github.com/editorconfig-checker/editorconfig-checker.javascript/blob/c78ecb0c123a71888e1165d17bfc22daf40ceb0d/src/release.ts#L18
As a result, this causes an error like the one below:
I believe there are two possible solutions:
.tar.gzsupport back to the assets.editorconfig-checker.javascriptto support resolving.zipfiles.If the second solution is acceptable, I would be happy to create a pull request for it. Please let me know once a decision has been made.