File tree Expand file tree Collapse file tree
example/IonicCapOneSignal/scripts Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5050jobs :
5151 prep :
5252 uses : OneSignal/sdk-actions/.github/workflows/prep-release.yml@main
53+ secrets :
54+ GH_PUSH_TOKEN : ${{ secrets.GH_PUSH_TOKEN }}
5355 with :
5456 target_repo : OneSignal/OneSignal-Cordova-SDK
5557 version : ${{ inputs.cordova_version }}
9698
9799 - name : Setup Capacitor
98100 run : |
99- bun link
100101 cd example/IonicCapOneSignal
101- bun install --frozen-lockfile
102102 bun run build
103103
104104 - name : Update Android SDK version
Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ mv onesignal-cordova-plugin-*.tgz onesignal-cordova-plugin.tgz
88
99# Install/update the plugin in the example app
1010cd example/IonicCapOneSignal
11- bun i
11+ if [ -n " $CI " ]; then
12+ bun install --frozen-lockfile
13+ else
14+ bun i
15+ fi
1216
1317# Build example
1418tsc && vite build
You can’t perform that action at this time.
0 commit comments