Skip to content

Commit 9e1ad57

Browse files
committed
Updated workflow
1 parent f10c2d4 commit 9e1ad57

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13+
name: Build [JVM]
1314
runs-on: ubuntu-latest
1415

1516
steps:
@@ -26,7 +27,8 @@ jobs:
2627
- name: Build
2728
run: make build
2829

29-
docker:
30+
docker-jvm:
31+
name: Docker [JVM]
3032
runs-on: ubuntu-latest
3133
needs:
3234
- build
@@ -59,13 +61,14 @@ jobs:
5961
run: make build
6062

6163
- name: Build and push [edge]
62-
run: docker buildx build --push -t ghcr.io/javabin/submittheforce:edge -f src/main/docker/Dockerfile.jvm --platforms linux/amd64,linux/arm64 .
64+
run: docker buildx build --push -t ghcr.io/javabin/submittheforce:edge -f src/main/docker/Dockerfile.jvm --platform linux/amd64,linux/arm64 .
6365

6466
- name: Build and push [latest]
6567
if: startsWith(github.ref, 'refs/tags/v')
66-
run: docker buildx build --push -t ghcr.io/javabin/submittheforce:latest -f src/main/docker/Dockerfile.jvm --platforms linux/amd64,linux/arm64 .
68+
run: docker buildx build --push -t ghcr.io/javabin/submittheforce:latest -f src/main/docker/Dockerfile.jvm --platform linux/amd64,linux/arm64 .
6769

6870
uber-jar:
71+
name: Uber-JAR
6972
runs-on: ubuntu-latest
7073
needs:
7174
- build

0 commit comments

Comments
 (0)