Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions .github/workflows/build-ipados.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: Build iPadOS App

on:
workflow_dispatch:

jobs:
build-ipados:
runs-on: macos-15
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'

- name: Install dependencies
run: npm install

- name: Generate iOS project
run: npx expo prebuild --platform ios --clean

- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable

- name: Install CocoaPods dependencies
run: |
cd ios
pod install

- name: Get version
id: version
run: |
VERSION=$(node -p "require('./app.json').expo.version")
echo "version=$VERSION" >> $GITHUB_OUTPUT

- name: Create release directory
run: mkdir -p release

- name: Build unsigned IPA
run: |
cd ios

# Build for generic iOS device (unsigned)
xcodebuild -workspace Termix.xcworkspace \
-scheme Termix \
-configuration Release \
-destination 'generic/platform=iOS' \
-archivePath ../release/Termix.xcarchive \
archive \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \
DEVELOPMENT_TEAM="" \
PROVISIONING_PROFILE_SPECIFIER=""

- name: Create unsigned IPA
run: |
cd release
mkdir -p Payload
cp -r Termix.xcarchive/Products/Applications/Termix.app Payload/
zip -r termix_ios_${{ steps.version.outputs.version }}.ipa Payload
rm -rf Payload

- name: Upload iPadOS IPA
uses: actions/upload-artifact@v4
with:
name: termix_ipados_${{ steps.version.outputs.version }}
path: release/termix_ios_${{ steps.version.outputs.version }}.ipa
retention-days: 30
if-no-files-found: error
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ See [Projects](https://github.com/orgs/Termix-SSH/projects/2) for all planned fe

# Features

- **SSH Terminal** - SSH terminal with multi-session support. Switch between two keyboard modes: the system keyboard and a custom terminal keyboard that is optimized for terminal use. The custom keyboard is completely configurable to your preferences.
- **SSH Terminal** - SSH terminal with multi-session support. Switch between two keyboard modes: the system keyboard and a custom terminal keyboard that is optimized for terminal use. The custom keyboard is completely configurable to your preferences. Has support for background-keepalive, VoiceOver, dication, Bluetooth/physical keyboards, emojis, etc.
- **SSH File Manager** - View, edit, modify, and move files and folders via SSH.
- **SSH Server Stats** - Get information on a servers status such as CPU, RAM, HDD, etc.
- **SSH Tunnels** - Start, stop, and manage SSH tunnels.
Expand Down
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"expo": {
"name": "Termix",
"slug": "termix",
"version": "1.2.0",
"version": "1.3.0",
"orientation": "default",
"icon": "./assets/images/icon.png",
"scheme": "termix-mobile",
Expand Down
Loading
Loading