File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,13 @@ jobs:
30
30
- name : Checkout Repository
31
31
uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
32
32
33
- - name : Fetch Cached Artifacts
34
- uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 .0.2
33
+ - name : Setup Golang Environment
34
+ uses : actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5 .0.0
35
35
with :
36
- path : ${{ github.workspace }}/dist
37
- key : nginx-gateway-fabric-${{ github.run_id }}-${{ github.run_number }}
36
+ go-version : stable
37
+
38
+ - name : Set GOPATH
39
+ run : echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
38
40
39
41
- name : Docker Buildx
40
42
uses : docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
72
74
make update-ngf-manifest${{ inputs.image == 'plus' && '-with-plus' || ''}} PREFIX=${ngf_prefix} TAG=${ngf_tag}
73
75
working-directory : ./conformance
74
76
77
+ - name : Build binary
78
+ uses : goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # v5.0.0
79
+ with :
80
+ version : latest
81
+ args : build --snapshot --clean
82
+ env :
83
+ TELEMETRY_ENDPOINT : " " # disables sending telemetry
84
+ TELEMETRY_ENDPOINT_INSECURE : " false"
85
+
75
86
- name : Build NGF Docker Image
76
87
uses : docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
77
88
with :
You can’t perform that action at this time.
0 commit comments