Skip to content

Commit 9b9fc96

Browse files
authored
Build action image when releasing (#747)
Automatically build the github action image as part of the goreleaser pipeline. The image name will be github.com/google/osv-scanner-action , but the image/package will be associated with the osv-scanner repository. This might fail if there is a permission issue when building/uploading the image in the release, will explore during release.
1 parent 0c88822 commit 9b9fc96

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.dockerignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
docs/vendor
2+
docs/_site
3+
dist/
4+
.history/

.goreleaser.yml

+24
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,24 @@ dockers:
6565
- "--label=org.opencontainers.image.url={{.GitURL}}"
6666
- "--platform=linux/arm64"
6767
goarch: arm64
68+
# Github Action
69+
- image_templates:
70+
- "ghcr.io/google/osv-scanner-action:{{ .Tag }}"
71+
dockerfile: action.dockerfile
72+
use: buildx
73+
build_flag_templates:
74+
- "--pull"
75+
- "--label=org.opencontainers.image.title=osv-scanner-action"
76+
- "--label=org.opencontainers.image.description=Vulnerability scanner written in Go which uses the data provided by https://osv.dev"
77+
- "--label=org.opencontainers.image.licenses=Apache-2.0"
78+
- "--label=org.opencontainers.image.created={{.Date}}"
79+
- "--label=org.opencontainers.image.name={{.ProjectName}}"
80+
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
81+
- "--label=org.opencontainers.image.version={{.Version}}"
82+
- "--label=org.opencontainers.image.source={{.GitURL}}"
83+
- "--label=org.opencontainers.image.url={{.GitURL}}"
84+
- "--platform=linux/amd64"
85+
goarch: amd64
6886

6987
docker_manifests:
7088
- name_template: "ghcr.io/google/osv-scanner:{{ .Tag }}"
@@ -75,6 +93,12 @@ docker_manifests:
7593
image_templates:
7694
- "ghcr.io/google/osv-scanner:{{ .Tag }}-amd64"
7795
- "ghcr.io/google/osv-scanner:{{ .Tag }}-arm64"
96+
- name_template: "ghcr.io/google/osv-scanner-action:{{ .Tag }}"
97+
image_templates:
98+
- "ghcr.io/google/osv-scanner-action:{{ .Tag }}"
99+
- name_template: "ghcr.io/google/osv-scanner-action:latest"
100+
image_templates:
101+
- "ghcr.io/google/osv-scanner-action:{{ .Tag }}"
78102

79103
archives:
80104
- format: binary

0 commit comments

Comments
 (0)