File tree 2 files changed +65
-0
lines changed
2 files changed +65
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build and Release iOS App
2
+
3
+ on :
4
+ push :
5
+ branches : [ main ]
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : macos-latest
10
+
11
+ steps :
12
+ - uses : actions/checkout@v4
13
+
14
+ - name : Select Xcode
15
+ run : sudo xcode-select -s /Applications/Xcode.app
16
+
17
+ - name : Build Archive
18
+ run : |
19
+ xcodebuild archive \
20
+ -scheme BetterClasscharts \
21
+ -archivePath $RUNNER_TEMP/BetterClasscharts.xcarchive \
22
+ -sdk iphoneos \
23
+ -configuration Release \
24
+ CODE_SIGN_IDENTITY="" \
25
+ CODE_SIGNING_REQUIRED=NO \
26
+ CODE_SIGNING_ALLOWED=NO
27
+
28
+ - name : Create IPA
29
+ run : |
30
+ cd $RUNNER_TEMP/BetterClasscharts.xcarchive/Products/Applications
31
+ mkdir Payload
32
+ cp -r BetterClasscharts.app Payload
33
+ zip -r BetterClasscharts.ipa Payload
34
+
35
+ - name : Create Release
36
+ id : create_release
37
+ uses : actions/create-release@v1
38
+ env :
39
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40
+ with :
41
+ tag_name : alpha-${{ github.run_number }}
42
+ release_name : Alpha Build ${{ github.run_number }}
43
+ body : |
44
+ Alpha build generated from commit ${{ github.sha }}
45
+
46
+ **Note**: This is an unsigned build. You'll need to use AltStore or similar to install it.
47
+ draft : false
48
+ prerelease : true
49
+
50
+ - name : Upload IPA
51
+ uses : actions/upload-release-asset@v1
52
+ env :
53
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
54
+ with :
55
+ upload_url : ${{ steps.create_release.outputs.upload_url }}
56
+ asset_path : ${{ runner.temp }}/BetterClasscharts.xcarchive/Products/Applications/BetterClasscharts.ipa
57
+ asset_name : BetterClasscharts.ipa
58
+ asset_content_type : application/octet-stream
Original file line number Diff line number Diff line change @@ -63,10 +63,17 @@ A modern, native iOS client for ClassCharts with multiple theme options.
63
63
64
64
## Installation
65
65
66
+ ### Option 1: Build from Source
66
67
1 . Clone the repository
67
68
2 . Open in Xcode
68
69
3 . Build and run on your iOS device or simulator
69
70
71
+ ### Option 2: Install Pre-built IPA
72
+ 1 . Download the latest IPA from the [ Releases] ( ../../releases ) page
73
+ 2 . Install using AltStore, Sideloadly, or similar sideloading tool
74
+ 3 . Trust the app in Settings > General > Device Management
75
+ 4 . Note: You'll need to reinstall every 7 days due to free development limitations
76
+
70
77
## Usage
71
78
72
79
1 . Launch the app
You can’t perform that action at this time.
0 commit comments