Merge pull request #207 from mapbox/podspec-update #129
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: push | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure .netrc | |
run: | | |
echo "machine api.mapbox.com login mapbox password ${{ secrets.SDK_REGISTRY_TOKEN }}" >> ~/.netrc | |
chmod 0600 ~/.netrc | |
- name: Check SPM manifest | |
run: swift package resolve | |
- name: Check CocoaPods manifest | |
run: pod spec lint |