Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
35 changes: 35 additions & 0 deletions .github/actions/setup-demo/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: 'Setup Demo'
description: 'Installs XcodeGen, generates the demo Xcode project, and creates Secrets.plist for Appium E2E'
inputs:
onesignal-app-id:
description: 'OneSignal App ID for the demo Secrets.plist'
required: true
onesignal-api-key:
description: 'OneSignal API Key for the demo Secrets.plist'
required: true
runs:
using: 'composite'
steps:
- name: Install XcodeGen
shell: bash
run: brew install xcodegen

- name: Create Secrets.plist
shell: bash
working-directory: examples/demo
env:
APP_ID: ${{ inputs.onesignal-app-id }}
API_KEY: ${{ inputs.onesignal-api-key }}
run: |
python3 - <<'PY'
import os, plistlib, pathlib
pathlib.Path('App/Secrets.plist').write_bytes(plistlib.dumps({
'ONESIGNAL_APP_ID': os.environ['APP_ID'],
'ONESIGNAL_API_KEY': os.environ['API_KEY'],
}))
PY

- name: Generate Xcode project
shell: bash
working-directory: examples/demo
run: xcodegen generate
58 changes: 0 additions & 58 deletions .github/os_probot_metadata.js

This file was deleted.

25 changes: 0 additions & 25 deletions .github/release-drafter.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/set_response_times.js

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/Zapier.yml

This file was deleted.

100 changes: 0 additions & 100 deletions .github/workflows/cd.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- name: Select Xcode Version
run: |
sudo xcode-select -s /Applications/Xcode_15.2.app
sudo xcode-select -s /Applications/Xcode_16.4.0.app
- name: Checkout OneSignal-iOS-SDK
uses: actions/checkout@v3
- name: Set Default Scheme
Expand Down
Loading