Skip to content

Commit

Permalink
Merge pull request #1 from kosratdev/feature/auto-deploy
Browse files Browse the repository at this point in the history
Feature/auto deploy
  • Loading branch information
kosratdev committed Apr 29, 2023
2 parents 47b730b + 79afd68 commit e73e83e
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/deploy_to_cocoapods.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Deploy to Cocoapods

on: [release]

jobs:
unit_tests:
runs-on: macOS-latest
steps:
- uses: szenius/[email protected]
with:
timezoneMacos: "Asia/Baghdad"
- uses: actions/checkout@v3

- name: Install Cocoapods
run: |
gem install cocoapods
pod install --project-directory=Example
- name: Run Tests
run: |
set -eo pipefail
xcodebuild test -enableCodeCoverage YES -workspace Example/MuslimData.xcworkspace -scheme MuslimData-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14 Pro' | xcpretty
deploy:
runs-on: macOS-latest
needs: unit_tests

steps:
- uses: actions/checkout@v3
- name: Install Cocoapods
run: gem install cocoapods

- name: Deploy to Cocoapods
run: |
set -eo pipefail
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
pod lib lint --allow-warnings
pod trunk push --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Unit Tests

on: [pull_request]

jobs:
unit_tests:
runs-on: macOS-latest
steps:
- uses: szenius/[email protected]
with:
timezoneMacos: "Asia/Baghdad"
- uses: actions/checkout@v3
- name: Install Cocoapods
run: |
gem install cocoapods
pod install --project-directory=Example
- name: Run Tests
run: |
set -eo pipefail
xcodebuild test -enableCodeCoverage YES -workspace Example/MuslimData.xcworkspace -scheme MuslimData-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14 Pro' | xcpretty

0 comments on commit e73e83e

Please sign in to comment.