Skip to content

Commit

Permalink
chore: Fix operator release workflow (#4936)
Browse files Browse the repository at this point in the history
fix operator release workflow

Signed-off-by: Tommy Hughes <[email protected]>
  • Loading branch information
tchughesiv authored Jan 20, 2025
1 parent 02b0a68 commit 6968b8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
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

0 comments on commit 6968b8d

Please sign in to comment.