Skip to content

Commit 717f2bd

Browse files
committed
Pass key to build
1 parent 06ce55d commit 717f2bd

File tree

8 files changed

+11
-9
lines changed

8 files changed

+11
-9
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
uses: ./.github/actions/android
1616
with:
1717
sign-publication: '1'
18+
gpg-key: ${{ secrets.GPG_PRIVATE_KEY }}
19+
gpg-password: ${{ secrets.GPG_PASSWORD }}
1820

1921
test_release:
2022
needs: [build]

.github/workflows/ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: "ios"
55
jobs:
66
build:
77
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
99
runs-on: macos-latest
1010
steps:
1111
- uses: actions/checkout@v3

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: "linux"
55
jobs:
66
build_x86_64:
77
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
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
@@ -23,7 +23,7 @@ jobs:
2323

2424
build_aarch64:
2525
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
2727
runs-on: ubuntu-arm64
2828
steps:
2929
- uses: actions/checkout@v3

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: "macos"
55
jobs:
66
build_macOS_aarch64:
77
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
99
runs-on: macos-latest
1010
steps:
1111
- uses: actions/checkout@v3
@@ -23,7 +23,7 @@ jobs:
2323

2424
build_macOS_x64:
2525
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
2727
runs-on: macos-14
2828
steps:
2929
- uses: actions/checkout@v3

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: "tests"
55
jobs:
66
build:
77
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
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
fail-fast: false

.github/workflows/valgrind.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
name: Testing with Valgrind on ${{ matrix.os }}
88
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
1010
strategy:
1111
matrix:
1212
include:

.github/workflows/wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: "wasm"
55
jobs:
66
build_wasm:
77
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
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: "windows"
55
jobs:
66
build_windows:
77
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
99
runs-on: windows-latest
1010
steps:
1111
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)