File tree Expand file tree Collapse file tree 6 files changed +91
-18
lines changed Expand file tree Collapse file tree 6 files changed +91
-18
lines changed Original file line number Diff line number Diff line change @@ -67,12 +67,21 @@ jobs:
67
67
- name : install sharp module
68
68
run : pnpm add sharp
69
69
70
+ - name : git status
71
+ run : git status
72
+
73
+ - name : git diff
74
+ run : git stash
75
+
70
76
- name : pull latest version
71
77
run : git pull --no-rebase
72
78
73
79
- name : Build the extension
74
80
run : pnpm build:chrome
75
81
82
+ - name : Inject css
83
+ run : pnpm inject:css
84
+
76
85
- name : Package the extension into a zip artifact
77
86
run : pnpm package
78
87
Original file line number Diff line number Diff line change
1
+ # v0.0.11 (Wed Jul 24 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Merge branch 'injectCSS-script' of github.com: player-ui /browser-devtools into injectCSS-script ([ @mercillo ] ( https://github.com/mercillo ) )
6
+
7
+ #### Authors: 1
8
+
9
+ - Marlon "Marky" Ercillo ([ @mercillo ] ( https://github.com/mercillo ) )
10
+
11
+ ---
12
+
13
+ # v0.0.10 (Wed Jul 24 2024)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - try releasing with injectcss ([ @mercillo ] ( https://github.com/mercillo ) )
18
+
19
+ #### Authors: 1
20
+
21
+ - Marlon "Marky" Ercillo ([ @mercillo ] ( https://github.com/mercillo ) )
22
+
23
+ ---
24
+
25
+ # v0.0.9 (Wed Jul 24 2024)
26
+
27
+ #### 🐛 Bug Fix
28
+
29
+ - testing dryrun ([ @mercillo ] ( https://github.com/mercillo ) )
30
+
31
+ #### Authors: 1
32
+
33
+ - Marlon "Marky" Ercillo ([ @mercillo ] ( https://github.com/mercillo ) )
34
+
35
+ ---
36
+
37
+ # v0.0.8 (Wed Jul 24 2024)
38
+
39
+ #### 🐛 Bug Fix
40
+
41
+ - Merge branch 'injectCSS-script' of github.com: player-ui /browser-devtools into injectCSS-script ([ @mercillo ] ( https://github.com/mercillo ) )
42
+
43
+ #### Authors: 1
44
+
45
+ - Marlon "Marky" Ercillo ([ @mercillo ] ( https://github.com/mercillo ) )
46
+
47
+ ---
48
+
49
+ # v0.0.8 (Wed Jul 24 2024)
50
+
51
+ #### 🐛 Bug Fix
52
+
53
+ - modified pnpm lock file ([ @mercillo ] ( https://github.com/mercillo ) )
54
+
55
+ #### Authors: 1
56
+
57
+ - Marlon "Marky" Ercillo ([ @mercillo ] ( https://github.com/mercillo ) )
58
+
59
+ ---
60
+
1
61
# v0.0.8 (Wed Jul 17 2024)
2
62
3
63
#### 🐛 Bug Fix
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " browser-devtools" ,
3
3
"displayName" : " Player ui devtools" ,
4
- "version" : " 0.0.7 " ,
4
+ "version" : " 0.0.11 " ,
5
5
"description" : " Player UI devtools browser extension" ,
6
6
"author" :
" Rafael Campos <[email protected] >" ,
7
7
"scripts" : {
21
21
"@auto-it/git-tag" : " ^11.1.6" ,
22
22
"@auto-it/version-file" : " ^11.1.6" ,
23
23
"@plasmohq/storage" : " ^1.10.0" ,
24
- "@player-tools/devtools-client" : " 0.7.0-next.2 " ,
25
- "@player-tools/devtools-types" : " 0.7.0-next.2 " ,
24
+ "@player-tools/devtools-client" : " 0.7.0" ,
25
+ "@player-tools/devtools-types" : " 0.7.0" ,
26
26
"@player-ui/pubsub-plugin" : " 0.7.2-next.4" ,
27
27
"@player-ui/react" : " 0.7.2-next.4" ,
28
28
"dequal" : " ^2.0.3" ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ for subfolder in build/*; do
11
11
12
12
link_tag=" <link rel=\" stylesheet\" href=\" $relative_file \" />"
13
13
14
- sed -i ' ' " s|</head>|$link_tag </head>|" $devtools_file
14
+ sed -i " s|</head>|$link_tag </head>|" $devtools_file
15
15
done
16
16
fi
17
17
done
Original file line number Diff line number Diff line change @@ -6,11 +6,15 @@ VERSION=`pnpm auto version`
6
6
if [ ! -z " $VERSION " ]; then
7
7
# # Update Changelog
8
8
auto changelog
9
+
10
+ git stash
9
11
10
12
# # Publish Package
11
13
pnpm version $VERSION -m " Bump version to: %s [skip ci]"
12
14
# # publish to npm
13
- pnpm publish
15
+ pnpm publish
16
+
17
+ echo $branch
14
18
15
19
# # Create GitHub Release
16
20
git push --follow-tags --set-upstream origin $branch
You can’t perform that action at this time.
0 commit comments