Skip to content

Commit d2a7de4

Browse files
committed
Fix publish action
1 parent 6193627 commit d2a7de4

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

Diff for: .github/workflows/build-release.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,17 @@ jobs:
1919

2020
- run: yarn
2121
- run: yarn --cwd functions
22+
23+
# xpi
2224
- run: yarn run build:firefox
23-
- run: npx web-ext --config web-ext.config.js build
2425
- run: npx web-ext --config web-ext.config.js sign
2526
env:
2627
WEB_EXT_API_KEY: ${{ secrets.FIREFOX_API_KEY }}
2728
WEB_EXT_API_SECRET: ${{ secrets.FIREFOX_API_SECRET }}
29+
30+
# zip
31+
- run: yarn run build
32+
- run: npx web-ext --config web-ext.config.js build
2833

2934
- name: Upload to release
3035
uses: svenstaro/upload-release-action@v2

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spotify-lyrics",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"description": "Desktop Spotify Web Player Instant Synchronized Lyrics",
55
"scripts": {
66
"lint": "tsc --noEmit && eslint --ext .ts --fix src/",

Diff for: public/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/extend-chrome/manifest-json-schema/main/schema/manifest.schema.json",
33
"name": "__MSG_extensionName__",
4-
"version": "1.6.0",
4+
"version": "1.6.1",
55
"manifest_version": 3,
66
"description": "__MSG_extensionDescription__",
77
"default_locale": "en",

Diff for: src/page/config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ export const localConfig: LocalConfig = (() => {
7979
margin-left: var(--ytmusic-like-button-renderer-button-spacing, 8px);
8080
}
8181
.${LYRICS_CLASSNAME} tp-yt-iron-icon {
82-
background: var(--iron-icon-fill-color, currentcolor);
83-
transform: rotate(90deg) scale(1.2);
82+
background: var(--ytmusic-text-secondary);
83+
transform: rotate(90deg) scale(1.1);
8484
-webkit-mask: url(${iconUrl}) center / 100% no-repeat;
8585
mask: url(${iconUrl}) center / 100% no-repeat;
8686
}
@@ -201,12 +201,12 @@ export const localConfig: LocalConfig = (() => {
201201
}
202202
.${LYRICS_CLASSNAME} svg {
203203
fill: transparent;
204-
background: currentColor;
204+
background: var(--text-subdued, rgb(106, 106, 106));
205205
-webkit-mask: url(${microphoneIconUrl}) center / 100% no-repeat;
206206
mask: url(${microphoneIconUrl}) center / 100% no-repeat;
207207
}
208208
.${LYRICS_CLASSNAME}.${LYRICS_ACTIVE_CLASSNAME} svg {
209-
background: #1db954;
209+
background: var(--text-bright-accent, rgb(17, 122, 55));
210210
}
211211
`,
212212
// hidden album expand button

0 commit comments

Comments
 (0)