Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Release] v1.0.2 #6

Merged
merged 3 commits into from
Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Swift

on:
push:
branches: [ main, develop, feature/* ]
pull_request:
branches: [ main, develop, feature/* ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Build and tests ( iOS 15.0)
run: xcodebuild test -scheme DGAlertView -destination 'platform=iOS Simulator,OS=15.0,name=iPhone 12 Pro' CODE_SIGNING_ALLOWED=NO IPHONEOS_DEPLOYMENT_TARGET=12.0
2 changes: 1 addition & 1 deletion DGAlertView.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DGAlertView'
s.version = '1.0.1'
s.version = '1.0.2'
s.summary = 'A simple custom popup dialog view for iOS written in Swift. Replaces UIAlertController alert style.'
s.homepage = 'https://github.com/donggyushin/DGAlertView'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
Expand Down