Skip to content

Commit a353534

Browse files
committed
build: install libgpgme-dev as operator-sdk requires it
Signed-off-by: Niels de Vos <ndevos@ibm.com>
1 parent 4870559 commit a353534

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/build-push.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
with:
2222
go-version-file: go.mod
2323

24+
- name: Install build dependencies
25+
run: sudo apt install -y libgpgme-dev
26+
2427
- name: Generate the bundle contents
2528
run: make bundle
2629

.github/workflows/tag-release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
with:
2323
go-version-file: go.mod
2424

25+
- name: Install build dependencies
26+
run: sudo apt install -y libgpgme-dev
27+
2528
- name: Generate the bundle contents
2629
run: make bundle TAG=${{ github.ref_name }}
2730

.github/workflows/test-build.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
with:
2121
go-version-file: go.mod
2222

23+
- name: Install build dependencies
24+
run: sudo apt install -y libgpgme-dev
25+
2326
- name: Generate the bundle contents
2427
run: make bundle
2528

0 commit comments

Comments
 (0)