Skip to content

Commit 3a58630

Browse files
authored
Update and rename docker-image.yml to server-docker-image.yml
1 parent cf32c72 commit 3a58630

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/docker-image.yml renamed to .github/workflows/server-docker-image.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,18 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v3
12+
- name: Set up QEMU
13+
uses: docker/setup-qemu-action@v3
14+
- name: Set up Docker Buildx
15+
uses: docker/setup-buildx-action@v3
1216
- name: Login to GitHub Package Registry
1317
uses: docker/login-action@v1
1418
with:
1519
registry: ghcr.io
1620
username: ${{ github.repository_owner }}
1721
password: ${{ secrets.GHCR_TOKEN }}
22+
- name: Docker build
23+
run: bash ./scripts/build.sh
24+
- name: Docker push
25+
run: bash ./scripts/push.sh
26+

0 commit comments

Comments
 (0)