Skip to content

Commit 96ac909

Browse files
committed
Update image build workflow paths
1 parent 8707561 commit 96ac909

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build-push-artifacts.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
name: Build and push images
3636
runs-on: ubuntu-latest
3737
needs: changes
38-
if: ${{ needs.changes.outputs.images == 'true' || github.ref_type == 'tag' }}
38+
# if: ${{ needs.changes.outputs.images == 'true' || github.ref_type == 'tag' }}
3939
strategy:
4040
matrix:
4141
include:
42-
- component: basic-chat
42+
- component: text-chat
4343
- component: image-analysis
4444
steps:
4545
- name: Check out the repository
@@ -56,7 +56,7 @@ jobs:
5656
id: image-meta
5757
uses: docker/metadata-action@v5
5858
with:
59-
images: ghcr.io/stackhpc/azimuth-llm-${{ matrix.component }}
59+
images: ghcr.io/stackhpc/azimuth-llm-ui-${{ matrix.component }}
6060
# Produce the branch name or tag and the SHA as tags
6161
tags: |
6262
type=ref,event=branch
@@ -67,7 +67,8 @@ jobs:
6767
uses: azimuth-cloud/github-actions/docker-multiarch-build-push@update-trivy-action
6868
with:
6969
cache-key: ${{ matrix.component }}
70-
context: ./web-apps/${{ matrix.component }}
70+
context: ./web-apps/
71+
file: ./web-apps/${{ matrix.component }}/Dockerfile
7172
platforms: linux/amd64,linux/arm64
7273
push: true
7374
tags: ${{ steps.image-meta.outputs.tags }}

0 commit comments

Comments
 (0)