Skip to content

Commit

Permalink
Sync with whisper.cpp v1.4.3 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 9, 2023
1 parent f1483cd commit 7ea39fb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,18 @@ jobs:
- name: 🏷️ Define Tags
run: |
source $GITHUB_ENV
# Always set the default tags
echo "TAGS=dublok/stt:${GITHUB_REF_NAME},dublok/stt:${SHA_SHORT}" >> $GITHUB_ENV
DEFAULT_TAGS="dublok/stt:${GITHUB_REF_NAME},dublok/stt:${SHA_SHORT}"
echo "TAGS=${DEFAULT_TAGS}" >> $GITHUB_ENV
# Check if GITHUB_REF_NAME starts with 'v' and if so, append 'latest'
if [[ $GITHUB_REF_NAME == v* ]]; then
echo "TAGS=${TAGS},dublok/stt:latest" >> $GITHUB_ENV
LATEST_TAGS="${DEFAULT_TAGS},dublok/stt:latest"
echo "TAGS=${LATEST_TAGS}" >> $GITHUB_ENV
fi
- name: 🏷️ Echo Tags
- name: 🏷️ Tags
run: |
source $GITHUB_ENV
echo "TAGS: ${TAGS}"
Expand Down

0 comments on commit 7ea39fb

Please sign in to comment.