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
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,11 @@ jobs:
RELEASE_VERSION: ${{ needs.get-version.outputs.release_version }}
with:
push: true
file: infra/docker/${{ matrix.component }}/Dockerfile
context: .
file: ./infra/docker/${{ matrix.component }}/Dockerfile
tags: feastdev/feast-${{ matrix.component }}:${{ needs.get-version.outputs.release_version }}
build-args: |
REVISION=${RELEASE_VERSION}
REVISION=$RELEASE_VERSION
- name: Build and push latest
uses: docker/build-push-action@v2
env:
Expand All @@ -93,10 +94,11 @@ jobs:
with:
if: ${VERSION_WITHOUT_PREFIX} == ${HIGHEST_SEMVER_TAG:1}
push: true
file: infra/docker/${{ matrix.component }}/Dockerfile
context: .
file: ./infra/docker/${{ matrix.component }}/Dockerfile
tags: feastdev/feast-${{ matrix.component }}:latest
build-args: |
REVISION=${RELEASE_VERSION}
REVISION=$RELEASE_VERSION

publish-helm-charts:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion infra/scripts/sync-helm-charts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fi

exit_code=0

helm repo add bitnami bitnami https://charts.bitnami.com/bitnami
helm repo add bitnami https://charts.bitnami.com/bitnami

for dir in "$repo_dir"/*; do
if helm dep update "$dir" && helm dep build "$dir"; then
Expand Down