This is an automated email from the ASF dual-hosted git repository.
wcjtw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/submarine.git
The following commit(s) were added to refs/heads/master by this push:
new 573748d SUBMARINE-823. Solve github action error in building image
573748d is described below
commit 573748d78b794244af4a4157d6d54b1135d9bba3
Author: ByronHsu <[email protected]>
AuthorDate: Mon May 10 21:11:43 2021 +0800
SUBMARINE-823. Solve github action error in building image
---
.github/workflows/deploy_docker_images.yml | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/deploy_docker_images.yml
b/.github/workflows/deploy_docker_images.yml
index ca7a444..bcd4331 100644
--- a/.github/workflows/deploy_docker_images.yml
+++ b/.github/workflows/deploy_docker_images.yml
@@ -22,11 +22,18 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- - name: Setup java
+ - name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: '1.8'
- java-package: jdk
+ - name: Set up Maven 3.6.3
+ uses: stCarolas/setup-maven@v4
+ with:
+ maven-version: 3.6.3
+ - name: Check version
+ run: |
+ mvn --version
+ java -version
- name: Build with Maven
run: mvn clean install -DskipTests
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]