We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e0544d commit cdfde6aCopy full SHA for cdfde6a
1 file changed
.github/workflows/build-plugin.yml
@@ -71,6 +71,16 @@ jobs:
71
- name: Pull LFS files
72
run: git lfs pull
73
74
+ - name: Resolve SPM dependencies
75
+ run: |
76
+ # Clear stale SPM cache to avoid module resolution failures
77
+ rm -rf ~/.spm-cache/checkouts ~/.spm-cache/artifacts
78
+ xcodebuild -project TablePro.xcodeproj \
79
+ -target "${{ steps.plugin-info.outputs.target }}" \
80
+ -clonedSourcePackagesDirPath "$HOME/.spm-cache" \
81
+ -skipPackagePluginValidation \
82
+ -resolvePackageDependencies
83
+
84
- name: Build plugin (ARM64)
85
run: ./scripts/build-plugin.sh "${{ steps.plugin-info.outputs.target }}" arm64
86
0 commit comments