Skip to content

Commit

Permalink
Migrate CircleCI basic config to the GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
OdNairy committed Apr 8, 2024
1 parent dae028c commit 96bc6a2
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 39 deletions.
38 changes: 0 additions & 38 deletions .circleci/config.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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
2 changes: 1 addition & 1 deletion .github/workflows/deploy_cocoapods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- '*'

jobs:
build:
deploy-to-cocoapods:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 96bc6a2

Please sign in to comment.