File tree Expand file tree Collapse file tree 8 files changed +11
-9
lines changed Expand file tree Collapse file tree 8 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 15
15
uses : ./.github/actions/android
16
16
with :
17
17
sign-publication : ' 1'
18
+ gpg-key : ${{ secrets.GPG_PRIVATE_KEY }}
19
+ gpg-password : ${{ secrets.GPG_PASSWORD }}
18
20
19
21
test_release :
20
22
needs : [build]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: "ios"
5
5
jobs :
6
6
build :
7
7
name : Building iOS
8
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
8
+ if : false
9
9
runs-on : macos-latest
10
10
steps :
11
11
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: "linux"
5
5
jobs :
6
6
build_x86_64 :
7
7
name : Building Linux x86_64
8
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
8
+ if : false
9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- uses : actions/checkout@v3
23
23
24
24
build_aarch64 :
25
25
name : Building Linux aarch64
26
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
26
+ if : false
27
27
runs-on : ubuntu-arm64
28
28
steps :
29
29
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: "macos"
5
5
jobs :
6
6
build_macOS_aarch64 :
7
7
name : Building macOS aarch64
8
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
8
+ if : false
9
9
runs-on : macos-latest
10
10
steps :
11
11
- uses : actions/checkout@v3
23
23
24
24
build_macOS_x64 :
25
25
name : Building macOS x64
26
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
26
+ if : false
27
27
runs-on : macos-14
28
28
steps :
29
29
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: "tests"
5
5
jobs :
6
6
build :
7
7
name : Testing on ${{ matrix.os }}
8
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
8
+ if : false
9
9
runs-on : ${{ matrix.os }}
10
10
strategy :
11
11
fail-fast : false
Original file line number Diff line number Diff line change 6
6
build :
7
7
name : Testing with Valgrind on ${{ matrix.os }}
8
8
runs-on : ${{ matrix.os }}
9
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
9
+ if : false
10
10
strategy :
11
11
matrix :
12
12
include :
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: "wasm"
5
5
jobs :
6
6
build_wasm :
7
7
name : Basic WASM build
8
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
8
+ if : false
9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: "windows"
5
5
jobs :
6
6
build_windows :
7
7
name : Building Windows
8
- if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
8
+ if : false
9
9
runs-on : windows-latest
10
10
steps :
11
11
- uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments