diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 349893bc..369d29eb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: run: | brew install automake - name: Checkout DashSync - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: dashsync submodules: recursive @@ -48,7 +48,10 @@ jobs: xcode-version: '15.4' - name: Rustup add targets run: rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-ios-sim - - name: Dependencies + - name: Clear dependencies + working-directory: ./dashsync/Example + run: rm -rf Podfile.lock Pods/ *.xcworkspace + - name: Build dependencies working-directory: ./dashsync/Example run: pod install --repo-update --verbose - name: Build diff --git a/.github/workflows/network.yml b/.github/workflows/network.yml index d24f22ca..342edf1b 100644 --- a/.github/workflows/network.yml +++ b/.github/workflows/network.yml @@ -17,7 +17,7 @@ jobs: run: | brew install automake - name: Checkout DashSync - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: dashsync submodules: recursive @@ -44,9 +44,6 @@ jobs: run: cargo install cargo-lipo - name: Rustup add targets run: rustup target add x86_64-apple-darwin - - name: Clear dependencies - working-directory: ./dashsync/Example - run: rm -rf Podfile.lock Pods/ *.xcworkspace - name: Build Dependencies working-directory: ./dashsync/Example run: pod install --repo-update