Skip to content

Commit cddcce6

Browse files
feat(spring-batch-examples): update CI configuration to reflect new module structure for database and file examples
1 parent 2aa5f20 commit cddcce6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/spring-batch-db-example.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: spring-batch-db-example CI Build
1+
name: spring-batch-db-examples CI Build
22

33
on:
44
pull_request:
55
branches: [master]
66
paths:
7-
- "spring-batch-db-example/**"
7+
- "spring-batch-db-examples/**"
88
types:
99
- opened
1010
- synchronize
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
defaults:
1919
run:
20-
working-directory: spring-batch-db-example
20+
working-directory: spring-batch-db-examples
2121
strategy:
2222
matrix:
2323
distribution: [ 'temurin' ]
@@ -49,13 +49,13 @@ jobs:
4949
id: services
5050
run: |
5151
echo "services<<EOF" >> $GITHUB_OUTPUT
52-
docker compose -f ./spring-batch-db-example/compose.yaml config --services >> $GITHUB_OUTPUT
52+
docker compose -f ./spring-batch-db-examples/compose.yaml config --services >> $GITHUB_OUTPUT
5353
echo "EOF" >> $GITHUB_OUTPUT
5454
5555
- name: Start containers with Compose Action
5656
uses: hoverkraft-tech/[email protected]
5757
with:
58-
compose-file: './spring-batch-db-example/compose.yaml'
58+
compose-file: './spring-batch-db-examples/compose.yaml'
5959
services: ${{ steps.services.outputs.services }}
6060
up-flags: '--build'
6161
down-flags: '--volumes'

.github/workflows/spring-batch-file-example.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: spring-batch-file-example CI Build
1+
name: spring-batch-file-examples CI Build
22

33
on:
44
pull_request:
55
branches: [master]
66
paths:
7-
- "spring-batch-file-example/**"
7+
- "spring-batch-file-examples/**"
88
types:
99
- opened
1010
- synchronize
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
defaults:
1919
run:
20-
working-directory: spring-batch-file-example
20+
working-directory: spring-batch-file-examples
2121
strategy:
2222
matrix:
2323
distribution: [ 'temurin' ]
@@ -49,13 +49,13 @@ jobs:
4949
id: services
5050
run: |
5151
echo "services<<EOF" >> $GITHUB_OUTPUT
52-
docker compose -f ./spring-batch-file-example/compose.yaml config --services >> $GITHUB_OUTPUT
52+
docker compose -f ./spring-batch-file-examples/compose.yaml config --services >> $GITHUB_OUTPUT
5353
echo "EOF" >> $GITHUB_OUTPUT
5454
5555
- name: Start containers with Compose Action
5656
uses: hoverkraft-tech/[email protected]
5757
with:
58-
compose-file: './spring-batch-file-example/compose.yaml'
58+
compose-file: './spring-batch-file-examples/compose.yaml'
5959
services: ${{ steps.services.outputs.services }}
6060
up-flags: '--build'
6161
down-flags: '--volumes'

0 commit comments

Comments
 (0)