diff --git a/.github/workflows/create-release-prs.yml b/.github/workflows/create-release-prs.yml index 458430a0b..b8e08bb59 100644 --- a/.github/workflows/create-release-prs.yml +++ b/.github/workflows/create-release-prs.yml @@ -34,7 +34,7 @@ jobs: # Step 2: Update iOS-specific files and build binaries update-and-build: needs: prep - runs-on: macos-13 + runs-on: macos-14 outputs: version_from: ${{ steps.extract_version.outputs.current_version }} @@ -152,7 +152,7 @@ jobs: # Step 4: Update XCFramework repository update-xcframework: needs: [prep, update-and-build, create-ios-pr] - runs-on: macos-13 + runs-on: macos-14 env: VERSION: ${{ github.event.inputs.version }} @@ -192,9 +192,6 @@ jobs: path: xcframework-repo token: ${{ secrets.PAT_TOKEN_ONESIGNAL_XCFRAMEWORK }} - - name: Setup Git User - uses: OneSignal/sdk-actions/.github/actions/setup-git-user@main - - name: Update Package.swift in XCFramework Repository run: | # Copy Package.swift from iOS SDK to XCFramework repo @@ -212,6 +209,10 @@ jobs: # Create release branch git checkout -b $RELEASE_BRANCH + # Configure git + git config --local user.email "noreply@onesignal.com" + git config --local user.name "github-actions[bot]" + # Commit changes git commit -am "Release $VERSION"