Skip to content

Commit

Permalink
Fix debug release image workflow (#26)
Browse files Browse the repository at this point in the history
* Fix make sure tag is available

* Empty-Commit
  • Loading branch information
murbans1 authored Jan 8, 2025
1 parent 7f2d524 commit 9d49537
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,23 @@ jobs:
- name: Log tag
run: |
TAG=$(git describe --tags --match "v*" --abbrev=0)
echo "Tag: ${{ TAG }}"
echo "TAG=$TAG" >> $GITHUB_ENV
echo "Tag: ${{ env.TAG }}"
- name: Build and push image - createvectordb
run: |
TAG=$(git describe --tags --match "v*" --abbrev=0)
./dockers/llm.vdb.service/makeDocker.sh elotl/createvectordb $TAG
echo "TAG=$TAG" >> $GITHUB_ENV
./dockers/llm.vdb.service/makeDocker.sh elotl/createvectordb $env.TAG
- name: Build and push image - llm-chat
run: |
TAG=$(git describe --tags --match "v*" --abbrev=0)
./dockers/llm.chatui.service/makeDocker.sh elotl/llm-chat $TAG
echo "TAG=$TAG" >> $GITHUB_ENV
./dockers/llm.chatui.service/makeDocker.sh elotl/llm-chat $env.TAG
- name: Build and push image - serveragllm
run: |
TAG=$(git describe --tags --match "v*" --abbrev=0)
./dockers/llm.rag.service/makeDocker.sh elotl/serveragllm $TAG
echo "TAG=$TAG" >> $GITHUB_ENV
./dockers/llm.rag.service/makeDocker.sh elotl/serveragllm $env.TAG

0 comments on commit 9d49537

Please sign in to comment.