Compare commits

..

3 Commits

Author SHA1 Message Date
AJ ONeal
8bb6dec5d8 chore(release): bump to v1.1.1 2024-01-02 16:07:22 -07:00
AJ ONeal
ca03de16c6 fix(builds-cacher): fallback to setting build.name from build.download 2024-01-02 16:01:43 -07:00
AJ ONeal
11e1bf94f0 fix(ci): add GITHUB_TOKEN to ENVs for running tests 2024-01-02 15:59:57 -07:00
4 changed files with 10 additions and 4 deletions

View File

@@ -32,4 +32,6 @@ jobs:
- run: npm run fmt
- run: npm ci
- run: npm run lint
- run: npm run test
- env:
GITHUB_TOKEN: ${{ github.token }}
run: npm run test

View File

@@ -415,6 +415,10 @@ BuildsCacher.create = function ({ ALL_TERMS, installers, caches }) {
continue;
}
if (!build.name) {
build.name = build.download.replace(/.*\//, '');
}
build.target = buildTarget;
meta.packages.push(build);
}

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@webinstall/webi-installers",
"version": "1.1.0",
"version": "1.1.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@webinstall/webi-installers",
"version": "1.1.0",
"version": "1.1.1",
"license": "MPL-2.0",
"dependencies": {
"@root/request": "^1.9.2",

View File

@@ -1,7 +1,7 @@
{
"name": "@webinstall/webi-installers",
"private": true,
"version": "1.1.0",
"version": "1.1.1",
"description": "webinstall script repository",
"main": "_webi/",
"scripts": {