Skip to content

fix share menu

fix share menu #125

Workflow file for this run

name: CI
on:
push:
branches:
- main
- Antoine/root-helper-proper
paths-ignore:
- '**/*.md'
- 'README.md'
- '.gitignore'
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
- 'README.md'
- '.gitignore'
workflow_dispatch:
jobs:
build:
name: Build
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Procursus
uses: beerpiss/procursus-action@v2
with:
packages: ldid
cache: true
cache-path: ~/__cache
- name: Select Xcode version (14.0)
run: |
sudo xcode-select --switch /Applications/Xcode_14.0.app
- name: Build IPA
run: |
make
- name: Permasign IPA
uses: permasigner/[email protected]
with:
input: "${{ github.workspace }}/build/Santander.ipa"
output: "${{ github.workspace }}/build/Santander.deb"
entitlements: "${{ github.workspace }}/entitlements-TS.plist"
args: "--author Antoine"
- name: Upload IPA
uses: actions/[email protected]
with:
name: SantanderJailed
path: ${{ github.workspace }}/build/SantanderJailed.ipa
- name: Upload IPA for TrollStore
uses: actions/[email protected]
with:
name: SantanderTrollStore
path: ${{ github.workspace }}/build/SantanderTrollStore.tipa
- name: Upload Permasigned deb
uses: actions/[email protected]
with:
name: SantanderJailbroken
path: ${{ github.workspace }}/build/Santander.deb