1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-02 23:57:10 +02:00

GitHub Actions stuff

This commit is contained in:
Raymond Hill 2022-09-19 11:53:04 -04:00
parent 749de482ee
commit 7116bf9a46
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 2 additions and 6 deletions

View File

@ -19,9 +19,6 @@ jobs:
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Clone uAssets
run: |
git submodule update --depth 1 --init
# https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html
- name: Build uBOLite MV3 packages
run: |
@ -35,7 +32,6 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
commit_message: Update build log file
target_branch: master
- name: Create GitHub release
id: create_release
uses: actions/create-release@v1

View File

@ -502,7 +502,7 @@ async function processCosmeticFilters(assetDetails, mapin) {
if ( generatedFiles.length !== 0 ) {
log(`CSS-related distinct filters: ${cssContentArray.length} distinct combined selectors`);
log(`CSS-related injectable files: ${generatedFiles.length}`);
log(`\t${generatedFiles}`);
log(`\t${generatedFiles.join(', ')}`);
}
return cssContentArray.length;
@ -665,7 +665,7 @@ async function processScriptletFilters(assetDetails, mapin) {
.reduce((a, b) => a + b.size, 0);
log(`Scriptlet-related distinct filters: ${scriptletFilterCount}`);
log(`Scriptlet-related injectable files: ${generatedFiles.length}`);
log(`\t${generatedFiles}`);
log(`\t${generatedFiles.join(', ')}`);
}
return generatedFiles.length;