Skip to content

Commit aab29a3

Browse files
committed
ci: update workflow names and add APP_NAME variable to Docker build
- Update workflow names in GitHub Actions files for better clarity - Add APP_NAME variable to Dockerfile build command for dynamic application naming
1 parent fb78e37 commit aab29a3

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will build a golang project
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
33

4-
name: Go
4+
name: Check Code
55

66
on:
77
push:

.github/workflows/image-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docker
1+
name: Docker Builder Image
22

33
# This workflow uses actions that are not certified by GitHub.
44
# They are provided by a third-party and are governed by

.github/workflows/image-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docker
1+
name: Docker Deploy Image
22

33
# This workflow uses actions that are not certified by GitHub.
44
# They are provided by a third-party and are governed by

.github/workflows/image-server-palace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docker
1+
name: Docker Palace Server Image
22

33
# This workflow uses actions that are not certified by GitHub.
44
# They are provided by a third-party and are governed by

deploy/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR /moon
66

77
COPY ../../ .
88

9-
RUN make all
9+
RUN make all app=${APP_NAME}
1010
RUN make build app=${APP_NAME}
1111

1212
FROM ghcr.io/aide-family/moon:deploy

0 commit comments

Comments
 (0)