From d17853d23fe2ff13abe750629145acfa0a3aebc3 Mon Sep 17 00:00:00 2001 From: Lain Iwakura Date: Thu, 7 Aug 2025 00:14:08 +0300 Subject: [PATCH] whoops --- .github/workflows/build-ipa.yml | 2 +- workflows/build-ipa.yml | 45 --------------------------------- 2 files changed, 1 insertion(+), 46 deletions(-) delete mode 100644 workflows/build-ipa.yml diff --git a/.github/workflows/build-ipa.yml b/.github/workflows/build-ipa.yml index c66fb7f..4a837a1 100644 --- a/.github/workflows/build-ipa.yml +++ b/.github/workflows/build-ipa.yml @@ -22,7 +22,7 @@ jobs: - name: Build Archive run: | - xcodebuild -project MobileMkch/MobileMkch.xcodeproj \ + xcodebuild -project MobileMkch.xcodeproj \ -scheme MobileMkch \ -configuration Release \ -destination 'generic/platform=iOS' \ diff --git a/workflows/build-ipa.yml b/workflows/build-ipa.yml deleted file mode 100644 index 4a837a1..0000000 --- a/workflows/build-ipa.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Build IPA - -on: - push: - branches: [ main, master ] - pull_request: - branches: [ main, master ] - workflow_dispatch: - -jobs: - build: - runs-on: macos-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Xcode - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: '15.0' - - - name: Build Archive - run: | - xcodebuild -project MobileMkch.xcodeproj \ - -scheme MobileMkch \ - -configuration Release \ - -destination 'generic/platform=iOS' \ - -archivePath MobileMkch.xcarchive \ - archive - - - name: Create Payload - run: | - mkdir -p Payload - cp -r MobileMkch.xcarchive/Products/Applications/MobileMkch.app Payload/ - - - name: Create IPA - run: | - zip -r MobileMkch.ipa Payload/ - - - name: Upload IPA - uses: actions/upload-artifact@v4 - with: - name: MobileMkch-ipa - path: MobileMkch.ipa \ No newline at end of file