From 0b85f4b480aa5850f4b8ea77fd319f9a153b5993 Mon Sep 17 00:00:00 2001 From: Simba Zhang Date: Wed, 15 Apr 2026 14:15:16 -0700 Subject: [PATCH 1/2] ci: disable jekyll build and fix missing xcodeproj generation in dmg build --- .github/workflows/build-dmg.yml | 4 ++++ .nojekyll | 1 + 2 files changed, 5 insertions(+) create mode 100644 .nojekyll diff --git a/.github/workflows/build-dmg.yml b/.github/workflows/build-dmg.yml index cce048fc..8cb35915 100644 --- a/.github/workflows/build-dmg.yml +++ b/.github/workflows/build-dmg.yml @@ -19,6 +19,10 @@ jobs: with: submodules: recursive + - name: Generate Xcode Project + run: | + cd SwiftBuddy && python3 generate_xcodeproj.py + - name: Build Ad-Hoc App run: | # Build the raw unsigned .app binary directly to bypass xcodebuild archive restrictions diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/.nojekyll @@ -0,0 +1 @@ + From a0f843b063e2f5fb9c8d3abaa6f083c1f42ee981 Mon Sep 17 00:00:00 2001 From: Simba Zhang Date: Wed, 15 Apr 2026 15:03:18 -0700 Subject: [PATCH 2/2] ci: use SWIFTLM_PR_TOKEN for dependency PRs to enable workflow cascading --- .github/workflows/update_dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_dependencies.yml b/.github/workflows/update_dependencies.yml index 029aa36e..66d02715 100644 --- a/.github/workflows/update_dependencies.yml +++ b/.github/workflows/update_dependencies.yml @@ -40,7 +40,7 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v6 with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.SWIFTLM_PR_TOKEN }} commit-message: "chore(deps): bump ${{ github.event.client_payload.source_repo }} to ${{ github.event.client_payload.new_tag }}" title: "Update ${{ github.event.client_payload.source_repo }} Dependency to ${{ github.event.client_payload.new_tag }}" body: |