File tree 2 files changed +4
-10
lines changed
2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
if : startsWith(github.ref, 'refs/tags/')
17
17
steps :
18
- - name : Setup nodejs
19
- uses : actions/setup-node@v4
20
- with :
21
- node-version : 22
22
18
- name : Clone repository
23
19
uses : actions/checkout@v4
24
20
with :
34
30
tools/make-chromium.sh ${{ env.VERSION }}
35
31
tools/make-firefox.sh ${{ env.VERSION }}
36
32
tools/make-thunderbird.sh ${{ env.VERSION }}
37
- - name : Build NPM package
38
- run : |
39
- tools/make-npm.sh ${{ env.VERSION }}
40
33
- name : Assemble release notes
41
34
run : |
42
35
> release.body.txt
57
50
dist/build/uBlock0_${{ env.VERSION }}.chromium.zip
58
51
dist/build/uBlock0_${{ env.VERSION }}.firefox.xpi
59
52
dist/build/uBlock0_${{ env.VERSION }}.thunderbird.xpi
60
- dist/build/uBlock0_${{ env.VERSION }}.npm.tgz
Original file line number Diff line number Diff line change @@ -33,9 +33,11 @@ dist/build/uBlock0.npm: tools/make-nodejs.sh $(sources) $(platform) $(assets)
33
33
tools/make-npm.sh
34
34
35
35
# Dev tools
36
- npm : node_modules/
36
+ node_modules :
37
37
npm install
38
38
39
+ npm : node_modules
40
+
39
41
lint : npm
40
42
npm run lint
41
43
@@ -77,7 +79,7 @@ dist/build/uAssets:
77
79
tools/pull-assets.sh
78
80
79
81
clean :
80
- rm -rf dist/build tmp/node_modules
82
+ rm -rf dist/build tmp/node_modules node_modules
81
83
82
84
cleanassets :
83
85
rm -rf dist/build/mv3-data dist/build/uAssets
You can’t perform that action at this time.
0 commit comments