Skip to content

Commit 3d3f4fa

Browse files
committed
fix(package): update metadata and clean release workflow script [skip android]
- Remove artifact download buttons from Telegram notification in release workflow - Enhance ionic-capacitor package.json with detailed description, author, and homepage - Update mobile package.json with improved description, author, and homepage information - Remove redundant description from mobile package.json root level fields
1 parent 6b444b1 commit 3d3f4fa

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -228,13 +228,6 @@ jobs:
228228
229229
if [ "$SKIP_TELEGRAM" -eq 0 ]; then
230230
BUTTONS="["
231-
if [ -d "$ARTIFACTS_PATH" ]; then
232-
for FILE in $(find "$ARTIFACTS_PATH" -type f); do
233-
FILE_NAME=$(basename "$FILE")
234-
FILE_URL="https://github.com/${{ github.repository }}/releases/download/${TAG}/${FILE_NAME}"
235-
BUTTONS="${BUTTONS}[{\"text\":\"💾 ${FILE_NAME}\",\"url\":\"${FILE_URL}\"}],"
236-
done
237-
fi
238231
if [ -f "$PROJECT/Dockerfile" ]; then
239232
BUTTONS="${BUTTONS}[{\"text\":\"🐳 Docker image\",\"url\":\"https://hub.docker.com/r/${DOCKERHUB_USER}/${NAME}\"}],"
240233
fi

ionic_capacitor/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"name": "ionic-capacitor",
33
"version": "0.0.2",
4-
"description": "Ionic android builder"
5-
}
4+
"description": "Docker image for building Ionic-Capacitor Android applications with automated APK generation and keystore management.",
5+
"author": "Ilshat Khamitov <ilshat.m.khamitov@gmail.com>",
6+
"homepage": "https://site15-my-dashboard.vercel.app"
7+
}

mobile/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "MyDashboard",
33
"version": "0.0.2",
4-
"author": "Ionic Framework",
5-
"homepage": "https://ionicframework.com/",
4+
"description": "An Ionic-Angular mobile application with Capacitor integration for Android deployment. Features a tabbed interface with explore container and dynamic routing.",
5+
"author": "Ilshat Khamitov <ilshat.m.khamitov@gmail.com>",
6+
"homepage": "https://site15-my-dashboard.vercel.app",
67
"scripts": {
78
"ng": "ng",
89
"start": "ng serve",
@@ -61,6 +62,5 @@
6162
"karma-jasmine": "~5.1.0",
6263
"karma-jasmine-html-reporter": "~2.1.0",
6364
"typescript": "~5.8.0"
64-
},
65-
"description": "An Ionic project"
66-
}
65+
}
66+
}

0 commit comments

Comments
 (0)