mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
GitHub Actions stuff
This commit is contained in:
parent
749de482ee
commit
7116bf9a46
2 changed files with 2 additions and 6 deletions
4
.github/workflows/mv3.yml
vendored
4
.github/workflows/mv3.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue