@siranjeevan/releaseflow 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/uploader.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siranjeevan/releaseflow",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Automated Flutter Release Manager",
5
5
  "main": "index.js",
6
6
  "bin": {
package/uploader.js CHANGED
@@ -60,7 +60,7 @@ async function uploadApk(apkPath, version) {
60
60
  action: 'read',
61
61
  expires: '03-01-2099',
62
62
  promptSaveAs: true,
63
- responseDisposition: 'attachment; filename="app-update.apk"'
63
+ responseDisposition: `attachment; filename="app-v${version}.apk"`
64
64
  });
65
65
 
66
66
  return url;
@@ -113,7 +113,7 @@ async function rollbackToVersion(version, forceUpdate) {
113
113
  action: 'read',
114
114
  expires: '03-01-2099',
115
115
  promptSaveAs: true,
116
- responseDisposition: 'attachment; filename="app-update.apk"'
116
+ responseDisposition: `attachment; filename="app-v${version}.apk"`
117
117
  });
118
118
 
119
119
  const configRef = db.collection('app_config').doc('version');