We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77cf882 commit 69efdd8Copy full SHA for 69efdd8
.github/workflows/bump-native-version.yml
@@ -20,7 +20,7 @@ jobs:
20
bump-native-sdks:
21
runs-on: ubuntu-latest
22
env:
23
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GH_TOKEN: ${{ secrets.ONESIGNAL_PAT }}
24
25
steps:
26
- name: Checkout repository
@@ -36,6 +36,15 @@ jobs:
36
- name: Configure GitHub CLI
37
run: gh auth status || gh auth login --with-token <<< "${GH_TOKEN}"
38
39
+ - name: Debug GH CLI access
40
+ run: |
41
+ echo "🔍 Checking authentication"
42
+ gh auth status
43
+ echo "🔍 Listing releases from Android SDK repo"
44
+ gh release list --repo OneSignal/OneSignal-Android-SDK --limit 5
45
+ echo "🔍 Listing releases from iOS SDK repo"
46
+ gh release list --repo OneSignal/OneSignal-iOS-SDK --limit 5
47
+
48
- name: Get current native SDK versions
49
id: current
50
run: |
0 commit comments