This is an automated email from the ASF dual-hosted git repository.
shuyangw pushed a commit to branch release/apisix-2.7
in repository https://gitbox.apache.org/repos/asf/apisix-docker.git
The following commit(s) were added to refs/heads/release/apisix-2.7 by this
push:
new f38d2d5 fix multi line run in actions
f38d2d5 is described below
commit f38d2d5533f1e85ec51825f7a45202f11c2270ad
Author: yiyiyimu <[email protected]>
AuthorDate: Fri Jun 25 15:25:59 2021 -0400
fix multi line run in actions
Signed-off-by: yiyiyimu <[email protected]>
---
.github/workflows/apisix_push_docker_hub.yaml | 2 +-
.github/workflows/dashboard_push_docker_hub.yaml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/apisix_push_docker_hub.yaml
b/.github/workflows/apisix_push_docker_hub.yaml
index 479978f..1a1a0e5 100644
--- a/.github/workflows/apisix_push_docker_hub.yaml
+++ b/.github/workflows/apisix_push_docker_hub.yaml
@@ -19,6 +19,6 @@ jobs:
run: echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login --username=${{
secrets.DOCKERHUB_USER }} --password-stdin
- name: Push apisix image to Docker Hub
- run:
+ run: |
make build-on-${{ matrix.platform }}
make push-on-${{ matrix.platform }}
diff --git a/.github/workflows/dashboard_push_docker_hub.yaml
b/.github/workflows/dashboard_push_docker_hub.yaml
index 72764fd..7a71292 100644
--- a/.github/workflows/dashboard_push_docker_hub.yaml
+++ b/.github/workflows/dashboard_push_docker_hub.yaml
@@ -14,6 +14,6 @@ jobs:
run: echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login --username=${{
secrets.DOCKERHUB_USER }} --password-stdin
- name: Push apisix dashboard image to Docker Hub
- run:
+ run: |
make build-on-dashboard
make push-on-dashboard