Skip to content

Commit 84d07d9

Browse files
2 parents 643a02b + 3559a89 commit 84d07d9

4 files changed

Lines changed: 27 additions & 2 deletions

File tree

.github/workflows/build-android-flutter.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ permissions:
33
name: Build Android Flutter App
44

55
on:
6+
push:
7+
tags:
8+
- "*"
69
release:
710
types: [published]
811
workflow_dispatch:
@@ -55,9 +58,12 @@ jobs:
5558
- name: Update app version
5659
run: |
5760
cd mobile
58-
# Update pubspec.yaml version
61+
# Update pubspec.yaml version to use Flutter format (version+build)
5962
if [[ "$IMAGE_TAG" != "latest" ]]; then
60-
sed -i "s/^version: .*/version: ${IMAGE_TAG#v}/" pubspec.yaml
63+
# Remove 'v' prefix if present and create build number from date
64+
VERSION_NAME=${IMAGE_TAG#v}
65+
BUILD_NUMBER=$(date +%Y%m%d)
66+
sed -i "s/^version: .*/version: ${VERSION_NAME}+${BUILD_NUMBER}/" pubspec.yaml
6167
fi
6268
6369
- name: Build APK
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
PinePods is a complete podcast management solution that allows you to host your own podcast server and enjoy a beautiful mobile experience.
2+
3+
Features:
4+
• Self-hosted podcast server synchronization
5+
• Beautiful, intuitive mobile interface
6+
• Download episodes for offline listening
7+
• Chapter support with navigation
8+
• Playlist management
9+
• User statistics and listening history
10+
• Multi-device synchronization
11+
• Search and discovery
12+
• Background audio playback
13+
• Sleep timer and playback speed controls
14+
15+
PinePods gives you complete control over your podcast experience while providing the convenience of modern podcast apps. Perfect for users who want privacy, control, and a great listening experience.
16+
17+
Note: This app requires a PinePods server to be set up. Visit the PinePods GitHub repository for server installation instructions.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
A beautiful, self-hosted podcast app with powerful server synchronization
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
PinePods

0 commit comments

Comments
 (0)