Repository: itsnebulalol/deb-to-ipa Branch: main Commit: 8113522f9a69 Files: 3 Total size: 4.2 KB Directory structure: gitextract_3uqy3i54/ ├── .github/ │ └── workflows/ │ └── run.yml ├── LICENSE └── README.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/run.yml ================================================ name: Run on: workflow_dispatch: inputs: deb: description: "Direct URL to deb file" required: true jobs: run: runs-on: ubuntu-latest steps: - name: Convert deb to IPA run: | curl -L -o ${{ github.workspace }}/app.deb "${{ github.event.inputs.deb }}" dpkg-deb -X ${{ github.workspace }}/app.deb ${{ github.workspace }}/app mkdir -p ${{ github.workspace }}/ipa/Payload cp -R ${{ github.workspace }}/app/Applications/* ${{ github.workspace }}/ipa/Payload cd ${{ github.workspace }}/ipa zip -r ${{ github.workspace }}/App.ipa . - name: Upload IPA uses: actions/upload-artifact@v4 with: name: App path: ${{ github.workspace }}/App.ipa ================================================ FILE: LICENSE ================================================ BSD 3-Clause License Copyright (c) 2022, Nebula All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================ FILE: README.md ================================================ # Deb to IPA ▶️ Convert an application from a deb to an IPA with a GitHub workflow. --- # How to use * Click fork on the top right, then click create fork * A GitHub account is required, it's free! > ![image](https://user-images.githubusercontent.com/18669106/180668388-fea832be-dd8d-4387-bb00-64637ec8c4a5.png)\ > ![image](https://user-images.githubusercontent.com/18669106/180667994-4f5e257d-a701-43a3-9613-f860c3990f44.png) * If you have made a fork before, click fetch upstream then fetch and merge * This should be done every time you want to convert a deb > ![image](https://user-images.githubusercontent.com/18669106/180668039-895bf508-34ba-4f68-84c2-9dd86b068efa.png) * Click Actions on the top, then enable actions > ![image](https://user-images.githubusercontent.com/18669106/180668059-cbfb4099-e40c-4828-b505-1532c6ae326f.png) * Click run script on the left, then click run workflow on the right > ![image](https://user-images.githubusercontent.com/18669106/180668091-29077082-8738-4b00-85a2-93b24c97b1b4.png) * Paste in the **direct** URL to a deb file in the box, then press run workflow * Like [this](https://github.com/D0m0/CocoaTop/releases/download/2.2.3/ru.domo.cocoatop64_2.2.3_iphoneos-arm.deb), for example > ![image](https://user-images.githubusercontent.com/18669106/180668191-318d1098-fa80-4e34-ab69-94e02df56975.png) * Wait for the workflow to be finished, then click on it > ![image](https://user-images.githubusercontent.com/18669106/180668274-44ec62d7-0be2-47c7-a8ac-ed19fb5e4c5f.png) * Download the artifact, unzip it, and send the IPA file to your iDevice! * Airdropping the file is probably the easiest, but you can use something like Dropbox or Mega. > ![image](https://user-images.githubusercontent.com/18669106/180668328-12083245-2ef8-43e1-8622-42acbe6dc33c.png) # License Deb to IPA is licensed under the BSD-3-Clause license, and can be found [here](https://github.com/itsnebulalol/deb-to-ipa/blob/main/LICENSE).