File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -171,14 +171,19 @@ jobs:
171171 uses : actions/setup-go@v2
172172 with :
173173 go-version : 1.22.9
174+ - name : Compile Go Test Binaries
175+ run : |
176+ cd infra/feast-operator
177+ mkdir -p dist
178+ go test -c -o dist/operator-e2e-tests ./test/e2e/
174179 - name : Release (Dry Run)
175180 if : github.event.inputs.dry_run == 'true'
176181 run : |
177182 npx -p @semantic-release/changelog -p @semantic-release/git -p @semantic-release/exec -p semantic-release semantic-release --dry-run
178183 - name : Release
179184 if : github.event.inputs.dry_run == 'false'
180185 run : |
181- npx -p @semantic-release/changelog -p @semantic-release/git -p @semantic-release/exec -p semantic-release semantic-release
186+ npx -p @semantic-release/changelog -p @semantic-release/git -p @semantic-release/exec -p semantic-release semantic-release --github-assets "infra/feast-operator/dist/operator-e2e-tests"
182187
183188
184189 update_stable_branch :
You can’t perform that action at this time.
0 commit comments