Skip to content

Commit 88d4864

Browse files
committed
Merge latest unstable
2 parents 6f7b232 + 8353ec9 commit 88d4864

File tree

126 files changed

+2789
-1037
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+2789
-1037
lines changed

.github/mergify.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ queue_rules:
44
batch_max_wait_time: 60 s
55
checks_timeout: 10800 s
66
merge_method: squash
7+
commit_message_template: |
8+
{{ title }} (#{{ number }})
9+
10+
{% for commit in commits %}
11+
* {{ commit.commit_message }}
12+
{% endfor %}
713
queue_conditions:
814
- "#approved-reviews-by >= 1"
915
- "check-success=license/cla"

.github/workflows/docker.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,12 @@ jobs:
152152
- name: Dockerhub login
153153
run: |
154154
echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin
155-
- name: Build lcli dockerfile (with push)
156-
run: |
157-
docker build \
158-
--build-arg PORTABLE=true \
159-
--tag ${LCLI_IMAGE_NAME}:${VERSION}${VERSION_SUFFIX} \
160-
--file ./lcli/Dockerfile .
161-
docker push ${LCLI_IMAGE_NAME}:${VERSION}${VERSION_SUFFIX}
155+
- name: Build lcli and push
156+
uses: docker/build-push-action@v5
157+
with:
158+
build-args: |
159+
FEATURES=portable
160+
context: .
161+
push: true
162+
file: ./lcli/Dockerfile
163+
tags: ${{ env.LCLI_IMAGE_NAME }}:${{ env.VERSION }}${{ env.VERSION_SUFFIX }}

0 commit comments

Comments
 (0)