Skip to content

Commit e0d6aa6

Browse files
committed
wip
wip
1 parent adbf5a5 commit e0d6aa6

File tree

4 files changed

+4
-11
lines changed

4 files changed

+4
-11
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,10 @@ jobs:
3030
- name: Install the Apple distribution certificate and provisioning profile
3131
uses: apple-actions/import-codesign-certs@v2
3232
with:
33+
create-keychain: false # do not create a new keychain for this value
3334
keychain-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}
3435
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }}
3536
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}
36-
37-
- name: Install the Apple distribution certificate and provisioning profile
38-
uses: apple-actions/import-codesign-certs@v2
39-
with:
40-
create-keychain: false # do not create a new keychain for this value
41-
keychain-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}
42-
p12-file-base64: ${{ secrets.DEV_CERTIFICATES_P12 }}
43-
p12-password: ${{ secrets.DEV_CERTIFICATES_P12_PASSWORD }}
4437
# - name: Bump Version Number
4538
# run: |
4639
- name: Build Binaries

OneSignal.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "OneSignal"
3-
s.version = "5.2.10"
3+
s.version = "some_test_version"
44
s.summary = "OneSignal push notification library for mobile apps."
55
s.homepage = "https://onesignal.com"
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

OneSignalXCFramework.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "OneSignalXCFramework"
3-
s.version = "5.2.10"
3+
s.version = "some_test_version"
44
s.summary = "OneSignal push notification library for mobile apps."
55
s.homepage = "https://onesignal.com"
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

iOS_SDK/OneSignalSDK/OneSignalCore/Source/OneSignalCommonDefines.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
// "*" in comment line ending comment means the string value has not been changed
4747
// App
4848

49-
#define ONESIGNAL_VERSION @"050210"
49+
#define ONESIGNAL_VERSION @"some_test_version"
5050

5151
#define OSUD_APP_ID @"GT_APP_ID" // * OSUD_APP_ID
5252
#define OSUD_REGISTERED_WITH_APPLE @"GT_REGISTERED_WITH_APPLE" // * OSUD_REGISTERED_WITH_APPLE

0 commit comments

Comments
 (0)