-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprepare-github-upload.bat
More file actions
45 lines (40 loc) · 1.28 KB
/
Copy pathprepare-github-upload.bat
File metadata and controls
45 lines (40 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@echo off
echo Preparing Cooking Blog Email-scraper v1.2.0 for GitHub upload...
echo.
REM Create upload directory
if not exist "github-upload" mkdir github-upload
REM Copy main APK for GitHub
echo Copying GitHub-friendly APK...
copy "CookingBlogEmailScraper-v1.2.0.apk" "github-upload\" /Y
REM Copy documentation files
echo Copying documentation...
copy "README.md" "github-upload\" /Y
copy "INSTALLATION_GUIDE.md" "github-upload\" /Y
copy "RELEASE_NOTES.md" "github-upload\" /Y
copy "GITHUB_RELEASE_GUIDE.md" "github-upload\" /Y
copy "API_SETUP_INSTRUCTIONS.md" "github-upload\" /Y
copy "RELEASE_v1.2_FINAL.md" "github-upload\" /Y
REM Copy build script
echo Copying build script...
copy "build-release.bat" "github-upload\" /Y
echo.
echo ✅ GitHub upload package ready in 'github-upload' folder!
echo.
echo Files prepared:
echo - CookingBlogEmailScraper-v1.2.0.apk (1.06 MB)
echo - README.md
echo - INSTALLATION_GUIDE.md
echo - RELEASE_NOTES.md
echo - GITHUB_RELEASE_GUIDE.md
echo - API_SETUP_INSTRUCTIONS.md
echo - RELEASE_v1.2_FINAL.md
echo - build-release.bat
echo.
echo Next steps:
echo 1. Go to your GitHub repository
echo 2. Click "Releases" → "Create a new release"
echo 3. Tag: v1.2.0
echo 4. Upload files from 'github-upload' folder
echo 5. Use description from RELEASE_v1.2_FINAL.md
echo.
pause