1 parent a69671a commit c4cadb9Copy full SHA for c4cadb9
1 file changed
.github/workflows/docker-image.yml
@@ -0,0 +1,20 @@
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
16
+ - name: Build Server Docker Image
17
+ run: docker build src --file src/PodLoad.Server/Dockerfile --tag podload-server:$(date +%s)
18
19
+ - name: Build Client Docker Image
20
+ run: docker build src --file src/PodLoad.Client/Dockerfile --tag podload-client:$(date +%s)
0 commit comments