chore: update release notes and remove outdated changelog files
This commit is contained in:
@@ -21,7 +21,6 @@ desc "Push a new release build to the Google Play"
|
|||||||
json_key: ENV['FASTLANE_JSON_KEY_PATH'],
|
json_key: ENV['FASTLANE_JSON_KEY_PATH'],
|
||||||
track: 'production',
|
track: 'production',
|
||||||
aab: '../app-release.aab',
|
aab: '../app-release.aab',
|
||||||
changelog: {'default' => 'Streaming optimizations, show chats >10 in folders, SVG support'},
|
|
||||||
skip_upload_apk: true,
|
skip_upload_apk: true,
|
||||||
skip_upload_images: true,
|
skip_upload_images: true,
|
||||||
skip_upload_screenshots: true,
|
skip_upload_screenshots: true,
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.4
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.6
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.7
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.8
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.9
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.10
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.11
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.12
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.13
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.14
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.2.0
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.2.1
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.2.2
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.2.3
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.2.4
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.2.5
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.2.6
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.2.7
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.2.8
|
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
submit_for_review(true)
|
submit_for_review(true)
|
||||||
skip_metadata(false)
|
skip_metadata(false)
|
||||||
release_notes({
|
release_notes({
|
||||||
'default' => "https://github.com/cogwheel0/conduit/releases/tag/v2.2.9",
|
'default' => "Streaming fixes",
|
||||||
})
|
})
|
||||||
promotional_text({'default' => "https://github.com/cogwheel0/conduit/releases/tag/v2.2.9"})
|
promotional_text({'default' => "https://github.com/cogwheel0/conduit/releases/tag/v2.2.9"})
|
||||||
skip_screenshots(true)
|
skip_screenshots(true)
|
||||||
|
|||||||
@@ -146,10 +146,10 @@ rm pubspec.yaml.bak
|
|||||||
print_status "Generating Fastlane changelogs..."
|
print_status "Generating Fastlane changelogs..."
|
||||||
LINK="https://github.com/cogwheel0/conduit/releases/tag/$TAG_VERSION"
|
LINK="https://github.com/cogwheel0/conduit/releases/tag/$TAG_VERSION"
|
||||||
|
|
||||||
# Android changelog (by build number)
|
# Android changelog (default only)
|
||||||
ANDROID_CHANGELOG_DIR="android/fastlane/metadata/android/en-US/changelogs"
|
ANDROID_CHANGELOG_DIR="android/fastlane/metadata/android/en-US/changelogs"
|
||||||
mkdir -p "$ANDROID_CHANGELOG_DIR"
|
mkdir -p "$ANDROID_CHANGELOG_DIR"
|
||||||
echo "$LINK" > "$ANDROID_CHANGELOG_DIR/$NEW_BUILD.txt"
|
echo "$LINK" > "$ANDROID_CHANGELOG_DIR/default.txt"
|
||||||
|
|
||||||
# iOS release notes in Deliverfile
|
# iOS release notes in Deliverfile
|
||||||
IOS_DELIVERFILE="ios/fastlane/Deliverfile"
|
IOS_DELIVERFILE="ios/fastlane/Deliverfile"
|
||||||
@@ -159,7 +159,7 @@ rm "${IOS_DELIVERFILE}.bak"
|
|||||||
|
|
||||||
# Commit changes
|
# Commit changes
|
||||||
print_status "Committing changes..."
|
print_status "Committing changes..."
|
||||||
git add pubspec.yaml "$ANDROID_CHANGELOG_DIR/$NEW_BUILD.txt" "$IOS_DELIVERFILE"
|
git add pubspec.yaml "$ANDROID_CHANGELOG_DIR/default.txt" "$IOS_DELIVERFILE"
|
||||||
git commit -m "chore: bump version to $NEW_VERSION"
|
git commit -m "chore: bump version to $NEW_VERSION"
|
||||||
|
|
||||||
git push origin main
|
git push origin main
|
||||||
|
|||||||
Reference in New Issue
Block a user