Skip to content

Commit

Permalink
ci(docker): fix docker compose 命令
Browse files Browse the repository at this point in the history
  • Loading branch information
lltx committed Oct 13, 2024
1 parent 2f2a353 commit c946806
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: PIG 镜像 action
name: Docker 镜像 构建

on:
push:
Expand Down Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Build and push Docker images
run: |
docker-compose build
docker compose build
registry="registry.cn-hangzhou.aliyuncs.com/pigx/"
for service in $(docker-compose config --services); do
if [ "$service" != "pig-redis" ]; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: PIG 构建action
name: maven 编译检查

on:
push:
Expand Down

0 comments on commit c946806

Please sign in to comment.