File tree Expand file tree Collapse file tree 2 files changed +56
-0
lines changed
Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Angular Build
2+ on :
3+ push :
4+ branches : main
5+ paths :
6+ - ' frontend/**'
7+
8+ jobs :
9+ main :
10+ runs-on : Ubuntu-20.04
11+ steps :
12+ -
13+ name : Checkout
14+ uses : actions/checkout@v2
15+ -
16+ name : Set up QEMU
17+ uses : docker/setup-qemu-action@v1
18+ -
19+ name : Set up Docker Buildx
20+ uses : docker/setup-buildx-action@v1
21+
22+ -
23+ name : Build
24+ id : docker_build
25+ uses : docker/build-push-action@v2
26+ with :
27+ context : frontend/.
28+ file : frontend/Dockerfile
Original file line number Diff line number Diff line change 1+ name : Api Build
2+ on :
3+ push :
4+ branches : main
5+ paths :
6+ - ' Api/**'
7+
8+ jobs :
9+ main :
10+ runs-on : Ubuntu-20.04
11+ steps :
12+ -
13+ name : Checkout
14+ uses : actions/checkout@v2
15+ -
16+ name : Set up QEMU
17+ uses : docker/setup-qemu-action@v1
18+ -
19+ name : Set up Docker Buildx
20+ uses : docker/setup-buildx-action@v1
21+
22+ -
23+ name : Build
24+ id : docker_build
25+ uses : docker/build-push-action@v2
26+ with :
27+ context : Api/.
28+ file : Api/Dockerfile
You can’t perform that action at this time.
0 commit comments