Skip to content

Commit c5054ab

Browse files
committed
ci: Only build images on specific tag pushes
1 parent 8f93889 commit c5054ab

24 files changed

+72
-24
lines changed

.github/workflows/build_airflow.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 0 1/2 * *' # https://crontab.guru/#0_0_1/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

.github/workflows/build_druid.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

.github/workflows/build_hadoop.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 2 1/2 * *' # https://crontab.guru/#0_2_1/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

.github/workflows/build_hbase.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 0 2/2 * *' # https://crontab.guru/#0_0_2/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

.github/workflows/build_hive.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 2 2/2 * *' # https://crontab.guru/#0_2_2/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

.github/workflows/build_java-base.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 0 1/2 * *' # https://crontab.guru/#0_0_1/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

.github/workflows/build_java-devel.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

.github/workflows/build_kafka-testing-tools.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 2 1/2 * *' # https://crontab.guru/#0_2_1/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

.github/workflows/build_kafka.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 0 2/2 * *' # https://crontab.guru/#0_0_2/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

.github/workflows/build_krb5.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
- cron: '0 2 2/2 * *' # https://crontab.guru/#0_2_2/2_*_*
1010
push:
1111
branches: [main]
12-
tags: ['*']
12+
tags:
13+
- "[0-9][0-9].[0-9]+.[0-9]+"
14+
- "[0-9][0-9].[0-9]+.[0-9]+-rc[0-9]+"
1315
paths:
1416
# To check dependencies, run this ( you will need to consider transitive dependencies)
1517
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'

0 commit comments

Comments
 (0)