Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.

Commit a19d4d6

Browse files
committed
fix github action image building
Signed-off-by: Mike Ng <[email protected]>
1 parent 8085ab4 commit a19d4d6

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/go-postsubmit.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ jobs:
3030
with:
3131
go-version: ${{ env.GO_VERSION }}
3232
- name: install imagebuilder
33-
run: |
34-
sudo apt-get install -y libvshadow-utils.
35-
go install -tags no_libsubid github.com/openshift/imagebuilder/cmd/[email protected]
33+
run: go install github.com/openshift/imagebuilder/cmd/[email protected]
3634
- name: images
3735
run: make build-images
3836
- name: push

.github/workflows/go-presubmit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
with:
6363
go-version: ${{ env.GO_VERSION }}
6464
- name: install imagebuilder
65-
run: go install -tags no_libsubid github.com/openshift/imagebuilder/cmd/[email protected]
65+
run: go install github.com/openshift/imagebuilder/cmd/[email protected]
6666
- name: build-images
6767
run: make build-images
6868

@@ -96,7 +96,7 @@ jobs:
9696
with:
9797
go-version: ${{ env.GO_VERSION }}
9898
- name: install imagebuilder
99-
run: go install -tags no_libsubid github.com/openshift/imagebuilder/cmd/[email protected]
99+
run: go install github.com/openshift/imagebuilder/cmd/[email protected]
100100
- name: build-images
101101
run: make build-images
102102
- name: setup kind

0 commit comments

Comments
 (0)