Skip to content

Commit ba8aa4c

Browse files
authored
Create docker-image.yml
1 parent 08fb5e1 commit ba8aa4c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/docker-image.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Server Docker Build
2+
3+
on:
4+
workflow_dispatch: {}
5+
6+
jobs:
7+
build-server:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Login to GitHub Package Registry
13+
uses: docker/login-action@v1
14+
with:
15+
registry: ghcr.io
16+
username: ${{ github.repository_owner }}
17+
password: ${{ secrets.GHCR_TOKEN }}

0 commit comments

Comments
 (0)