Skip to content

Commit f040de7

Browse files
authored
Update and rename integration.yaml to docker-build-and-push.yaml (#58)
1 parent 48be107 commit f040de7

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

.github/workflows/integration.yaml renamed to .github/workflows/docker-build-and-push.yaml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,28 @@
1-
name: Build
1+
name: Docker Build and Push
22

33
on:
44
push:
55
branches: [ "main", "release-**" ]
66
tags: [ "[0-9]+.[0-9]+.[0-9]+" ]
7+
paths:
8+
- 'pom.xml'
9+
- '**.java'
10+
- 'Dockerfile'
11+
paths-ignore:
12+
- 'docs/**'
13+
- 'deployment-examples/**'
714
pull_request:
815
types: [ opened, synchronize, reopened ]
16+
paths:
17+
- 'pom.xml'
18+
- '**.java'
19+
- 'Dockerfile'
20+
paths-ignore:
21+
- 'docs/**'
22+
- 'deployment-examples/**'
923

1024
jobs:
11-
build:
25+
docker-build-and-push:
1226

1327
runs-on: ubuntu-latest
1428

@@ -113,4 +127,4 @@ jobs:
113127
push: true
114128
file: tutorials/currency-converter/target/docker/flink-sql-runner-with-flink-udf-currency-converter/build/Dockerfile
115129
tags: ${{ steps.currency_converter_meta.outputs.tags }}
116-
labels: ${{ steps.currency_converter_meta.outputs.labels }}
130+
labels: ${{ steps.currency_converter_meta.outputs.labels }}

0 commit comments

Comments
 (0)