Skip to content

Commit e3f3910

Browse files
committed
Merge branch 'refs/heads/develop' into develop_930
2 parents 011e72b + df21999 commit e3f3910

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Backend Docker Image CI
2+
3+
on:
4+
push:
5+
branches: [ "develop" ]
6+
paths:
7+
- 'backend/**'
8+
- 'build/backend/**'
9+
- '.github/workflows/**'
10+
pull_request:
11+
branches: [ "develop" ]
12+
paths:
13+
- 'backend/**'
14+
- 'build/backend/**'
15+
- '.github/workflows/**'
16+
workflow_dispatch:
17+
18+
jobs:
19+
20+
build:
21+
22+
runs-on: ubuntu-latest
23+
24+
steps:
25+
- uses: actions/checkout@v4
26+
- name: Build the Docker image
27+
run: make build-backend

0 commit comments

Comments
 (0)