File tree Expand file tree Collapse file tree 5 files changed +8
-14
lines changed Expand file tree Collapse file tree 5 files changed +8
-14
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
setup :
11
11
uses : ./.github/workflows/reusable_setup.yml
12
- secrets :
13
- THE_GH_RELEASE_TOKEN : ${{ secrets.CAP_GH_RELEASE_TOKEN }}
14
12
15
13
lint-test :
16
14
needs : ' setup'
17
15
uses : ./.github/workflows/reusable_lint.yml
18
- secrets :
19
- THE_GH_RELEASE_TOKEN : ${{ secrets.CAP_GH_RELEASE_TOKEN }}
20
16
21
17
build-packages :
22
18
needs : ' setup'
23
- uses : ./.github/workflows/reusable_build.yml
24
- secrets :
25
- THE_GH_RELEASE_TOKEN : ${{ secrets.CAP_GH_RELEASE_TOKEN }}
19
+ uses : ./.github/workflows/reusable_build.yml
Original file line number Diff line number Diff line change 4
4
workflow_call :
5
5
secrets :
6
6
THE_GH_RELEASE_TOKEN :
7
- required : true
7
+ required : false
8
8
9
9
jobs :
10
10
build :
14
14
- uses : actions/checkout@v4
15
15
with :
16
16
fetch-depth : 0
17
- token : ${{ secrets.THE_GH_RELEASE_TOKEN }}
17
+ token : ${{ secrets.THE_GH_RELEASE_TOKEN || github.token }}
18
18
19
19
- name : ' Setup Tools'
20
20
uses : ./.github/actions/setup-tools
Original file line number Diff line number Diff line change 4
4
workflow_call :
5
5
secrets :
6
6
THE_GH_RELEASE_TOKEN :
7
- required : true
7
+ required : false
8
8
9
9
jobs :
10
10
lint :
14
14
- uses : actions/checkout@v4
15
15
with :
16
16
fetch-depth : 0
17
- token : ${{ secrets.THE_GH_RELEASE_TOKEN }}
17
+ token : ${{ secrets.THE_GH_RELEASE_TOKEN || github.token }}
18
18
19
19
- name : ' Setup Tools'
20
20
uses : ./.github/actions/setup-tools
Original file line number Diff line number Diff line change 4
4
workflow_call :
5
5
secrets :
6
6
THE_GH_RELEASE_TOKEN :
7
- required : true
7
+ required : false
8
8
9
9
jobs :
10
10
setup :
17
17
- uses : actions/checkout@v4
18
18
with :
19
19
fetch-depth : 0
20
- token : ${{ secrets.THE_GH_RELEASE_TOKEN }}
20
+ token : ${{ secrets.THE_GH_RELEASE_TOKEN || github.token }}
21
21
22
22
- name : ' Setup Tools'
23
23
uses : ./.github/actions/setup-tools
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ repositories {
58
58
dependencies {
59
59
// implementation fileTree(dir: 'libs', include: ['*.jar'])
60
60
implementation project(' :capacitor-android' )
61
- implementation " com.capacitorjs:osinappbrowser -android:1.2.1"
61
+ implementation " io.ionic.libs:ioninappbrowser -android:1.2.1"
62
62
implementation ' androidx.browser:browser:1.8.0'
63
63
implementation " androidx.constraintlayout:constraintlayout:2.2.0"
64
64
implementation " androidx.appcompat:appcompat:$androidxAppCompatVersion "
You can’t perform that action at this time.
0 commit comments