mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-09-16 14:57:15 +00:00
fix(telemetry): require acknowledged adapter evidence and prepare beta.3
This commit is contained in:
@@ -44,4 +44,11 @@ jobs:
|
||||
run: docker buildx build --build-arg LANGBOT_BUILD_REVISION=${{ github.sha }} --platform linux/arm64,linux/amd64 -t rockchin/langbot:${{ steps.check_version.outputs.version }} -t rockchin/langbot:latest . --push
|
||||
- name: Build for Pre-release # no update for latest tag
|
||||
if: ${{ github.event.release.prerelease == true }}
|
||||
run: docker buildx build --build-arg LANGBOT_BUILD_REVISION=${{ github.sha }} --platform linux/arm64,linux/amd64 -t rockchin/langbot:${{ steps.check_version.outputs.version }} . --push
|
||||
env:
|
||||
RELEASE_VERSION: ${{ steps.check_version.outputs.version }}
|
||||
run: |
|
||||
tags=(-t "rockchin/langbot:$RELEASE_VERSION")
|
||||
if [[ "$RELEASE_VERSION" =~ ^v[0-9]+\.[0-9]+\.[0-9]+-beta\.[0-9]+$ ]]; then
|
||||
tags+=(-t rockchin/langbot:beta)
|
||||
fi
|
||||
docker buildx build --build-arg LANGBOT_BUILD_REVISION=${{ github.sha }} --platform linux/arm64,linux/amd64 "${tags[@]}" . --push
|
||||
Reference in New Issue
Block a user