Compare commits

...

2 Commits

Author SHA1 Message Date
frichtarik
e2e3457171
Merge c8e7c31e3b into 966dfad385 2024-02-15 13:26:18 +00:00
Filip Richtarik
c8e7c31e3b Update package-lock.json 2024-02-15 14:26:12 +01:00
4 changed files with 992 additions and 12242 deletions

2
.nvmrc
View File

@ -1 +1 @@
20.10.0
20.11.0

13229
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -15,7 +15,7 @@ export default function getURL(
};
const ext = (os: string): string => {
if (os === 'Windows') {
if (os === 'windows') {
return 'zip';
} else {
return 'tar.gz';

View File

@ -5,6 +5,7 @@ import * as main from './main';
try {
await main.run();
} catch (e) {
// eslint-ignore-next-line
core.setFailed(`Action failed with error ${e.message}`);
}
})();