Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,7 @@ jobs:
with:
go-version: 1.22.9
- name: Build & version operator-specific release files
run: |
cd infra/feast-operator/
make build-installer bundle
run: make -C infra/feast-operator build-installer bundle

publish-web-ui-npm:
needs: [ validate_version_bumps, get_dry_release_versions ]
Expand Down Expand Up @@ -152,6 +150,10 @@ jobs:
- name: Setup Helm-docs
run: |
brew install norwoodj/tap/helm-docs
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.22.9
- name: Release (Dry Run)
if: github.event.inputs.dry_run == 'true'
run: |
Expand Down
2 changes: 1 addition & 1 deletion .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module.exports = {
"verifyReleaseCmd": "./infra/scripts/validate-release.sh ${nextRelease.type} " + current_branch,

// Bump all version files and build UI / update yarn.lock / helm charts
"prepareCmd": "python ./infra/scripts/release/bump_file_versions.py ${lastRelease.version} ${nextRelease.version}; make build-ui; make build-helm-docs"
"prepareCmd": "python ./infra/scripts/release/bump_file_versions.py ${lastRelease.version} ${nextRelease.version}; make build-ui; make build-helm-docs; make -C infra/feast-operator build-installer bundle"
}],

["@semantic-release/release-notes-generator", {
Expand Down
Loading