Skip to content

Commit 74f89db

Browse files
committed
Fix build workflow: include styles.css, bump version to 2.2.1
1 parent 0e4b299 commit 74f89db

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
mkdir -p build/chrome
3838
3939
# Copy all extension files
40-
cp -r icons build/chrome/
41-
cp popup.html popup.js filepicker.html filepicker.js build/chrome/
40+
cp -r icons fonts build/chrome/
41+
cp popup.html popup.js filepicker.html filepicker.js styles.css build/chrome/
4242
4343
# Create Chrome-specific manifest (remove Firefox-specific settings)
4444
jq 'del(.browser_specific_settings)' manifest.json > build/chrome/manifest.json
@@ -55,8 +55,8 @@ jobs:
5555
mkdir -p build/firefox
5656
5757
# Copy all extension files
58-
cp -r icons build/firefox/
59-
cp popup.html popup.js filepicker.html filepicker.js build/firefox/
58+
cp -r icons fonts build/firefox/
59+
cp popup.html popup.js filepicker.html filepicker.js styles.css build/firefox/
6060
6161
# Firefox uses the manifest as-is (includes browser_specific_settings)
6262
cp manifest.json build/firefox/

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Send to ntfy",
4-
"version": "2.2.0",
4+
"version": "2.2.1",
55
"description": "Send notifications to ntfy.sh with file attachments, priority, and tags",
66
"permissions": [
77
"activeTab",

0 commit comments

Comments
 (0)