gonative-cli 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c9448c80c2d7e7d3b728e8ef8c78e192466c5e8e90426db993e71cc1c9a77392
4
- data.tar.gz: 3d8f81f771da0fbc1a71fdbb00ba8bbbb9d46d7c117fc27aa148019eb4871dee
3
+ metadata.gz: 8ef02e059ff5c0717aac8097dbf445915dee082bebb01f985df2046206445cc3
4
+ data.tar.gz: 41c6b9dc087274e8dc5cf56199a7760328a9d79396c7803453fc3394283f7774
5
5
  SHA512:
6
- metadata.gz: 8ddde02e555ca85340c00e2387faac84f367e97f08cff929b20b1fcf8d54cae601fbe0ed6f56ea03e0423b71bf372c8382a173b62a30cccbb188677caef37227
7
- data.tar.gz: 108b46e0213133bb6e154ee14be0a04d7c24e0212987966d7d262fc1941d151efaae264c6f692a035a137832119d749bfdf925bd37577c93cfad2af478e9e84b
6
+ metadata.gz: 605137fd3b2e8babfcb9cc5851e41df7f89d579bf95741e072afb23a098c2369618edef7c9e097736633f76b3e4fb9bc82180663381b47a9d76af1f7f573e5fe
7
+ data.tar.gz: 43bc2301c2282ce32c93e9abb420f224196508e136394139a032b16952e55c11b8bca31d4f854c77e53499663095a300fb135e3d35ea3badb6142b3777ad5d6a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gonative-cli (1.3.1)
4
+ gonative-cli (1.3.2)
5
5
  activesupport (~> 6.0)
6
6
  cocoapods (~> 1.10)
7
7
  colorize (~> 0.8.0)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GoNative
4
- VERSION = '1.3.1'
4
+ VERSION = '1.3.2'
5
5
  end
@@ -0,0 +1,57 @@
1
+ name: Publish a new pod version
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - master
8
+ workflow_dispatch:
9
+
10
+ jobs:
11
+ release-pod:
12
+ runs-on: macos-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ with:
16
+ fetch-depth: 0
17
+
18
+ - run: git config --global user.email "noreply@gonative.io"
19
+ - run: git config --global user.name "gonative-bot"
20
+
21
+ - name: Configure ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: 3.1.2
25
+
26
+ - name: Install gonative-cli
27
+ run: gem install gonative-cli
28
+
29
+ - name: Install cocoapods
30
+ run: gem install cocoapods
31
+
32
+ - name: Get version
33
+ run: echo "version=$(gonative ios version)" >> "$GITHUB_ENV"
34
+
35
+ - name: Check if tag already exists
36
+ run: git show-ref --tags --verify --quiet -- "refs/tags/${{ env.version }}" && echo "tagged=1" >> "$GITHUB_ENV" || echo "tagged=0" >> "$GITHUB_ENV"
37
+
38
+ - name: Install SSH key
39
+ uses: shimataro/ssh-key-action@v2
40
+ with:
41
+ key: ${{ secrets.POD_SPEC_SECRET_KEY }}
42
+ known_hosts: unnecessary
43
+
44
+ - name: Add gonative-specs repo
45
+ run: pod repo add gonative-specs git@github.com:gonativeio/gonative-specs.git
46
+
47
+ - name: Publish pod
48
+ if: env.tagged == 0
49
+ run: gonative ios publish --debug
50
+
51
+ - name: Upload build directory
52
+ if: failure()
53
+ uses: actions/upload-artifact@v3
54
+ with:
55
+ name: build-dir
56
+ path: build
57
+ retention-days: 5
@@ -1 +1 @@
1
- Licensing information available at https://gonative.io/
1
+ Licensing information available at https://median.co/
@@ -1,7 +1,7 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = '#{plugin_name}'
3
3
  s.version = '0.1.0'
4
- s.summary = 'Facebook plugin for GoNative.'
4
+ s.summary = '#{plugin_name} plugin for Median.'
5
5
 
6
6
  s.description = <<-DESC
7
7
  TODO: Add long description of the pod here.
@@ -12,7 +12,7 @@ TODO: Add long description of the pod here.
12
12
  s.author = { 'hhunaid' => 'hhunaid@gmail.com' }
13
13
  s.source = { :git => 'git@github.com:gonativeio/#{repo_name}.git', :tag => s.version.to_s }
14
14
 
15
- s.ios.deployment_target = '10.0'
15
+ s.ios.deployment_target = '13.0'
16
16
  s.swift_versions = '5.0'
17
17
 
18
18
  s.subspec 'Source' do |cs|
@@ -27,6 +27,6 @@ TODO: Add long description of the pod here.
27
27
  cs.preserve_paths = ['plist/*.{plist}', 'Extensions/**/*']
28
28
  end
29
29
 
30
- s.default_subspec = 'Source'
30
+ s.default_subspec = 'Binary'
31
31
  s.dependency 'GoNativeCore'
32
32
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gonative-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hunaid Hassan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-12 00:00:00.000000000 Z
11
+ date: 2023-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-cli
@@ -229,6 +229,7 @@ files:
229
229
  - templates/plugins/android/proguard-rules.pro
230
230
  - templates/plugins/android/src/main/AndroidManifest.xml.tpl
231
231
  - templates/plugins/android/src/main/java/io/gonative/android/plugins/JAVA_PACKAGE/PLUGIN_NAME.java.tpl
232
+ - templates/plugins/ios/common/.github/workflows/release-pod.yml
232
233
  - templates/plugins/ios/common/.gitignore
233
234
  - templates/plugins/ios/common/LICENSE
234
235
  - templates/plugins/ios/common/PLUGIN_NAME.podspec.tpl