Skip to content

Commit 253733c

Browse files
authored
Create docker-image.yml
1 parent a69671a commit 253733c

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/docker-image.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
7+
jobs:
8+
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Build Server Docker Image
16+
run: docker build src/PodLoad.Server --file Dockerfile --tag podload-server:$(date +%s)
17+
- uses: actions/checkout@v4
18+
- name: Build Client Docker Image
19+
run: docker build src/PodLoad.Client --file Dockerfile --tag podload-client:$(date +%s)

0 commit comments

Comments
 (0)