Skip to content

Commit de6f7d6

Browse files
committed
Automatic building(?)
1 parent 3ec9acc commit de6f7d6

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed

.github/workflows/build.yml

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,17 @@ A modern, native iOS client for ClassCharts with multiple theme options.
6363

6464
## Installation
6565

66+
### Option 1: Build from Source
6667
1. Clone the repository
6768
2. Open in Xcode
6869
3. Build and run on your iOS device or simulator
6970

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+
7077
## Usage
7178

7279
1. Launch the app

0 commit comments

Comments
 (0)