From a043a10f186b6cb29ea00a5ac1c28a5c552fd438 Mon Sep 17 00:00:00 2001 From: Vinogradov Daniil Date: Fri, 26 Apr 2024 16:47:22 +0200 Subject: [PATCH] Update ios.yml --- .github/workflows/ios.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index fe412453..b99a26c0 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -104,6 +104,20 @@ jobs: files: | ${{ runner.temp }}/build/iTorrent.ipa ${{ runner.temp }}/build/manifest.plist + + - name: Generate AltStore Source + run: | + swiftc -parse-as-library ./GenerateAltStoreJson.swift + ./GenerateAltStoreJson >> ./AltStoreSource.json + + - name: Release AltStore Source + uses: softprops/action-gh-release@v2 + if: startsWith(github.ref, 'refs/tags/') + with: + repository: XITRIX/xitrix.github.io + token: ${{ secrets.DISTRIB_REPO_ACCESS_TOKEN }} + files: | + ./AltStoreSource.json - name: Upload application uses: actions/upload-artifact@v3