Skip to content

Commit ae62c72

Browse files
committed
Search for release artifacts with case insensitive query (#30)
* Search for release artifacts with case insensitive query Signed-off-by: Jakub Stejskal <xstejs24@gmail.com> * Try to use version with suffix in tests Signed-off-by: Jakub Stejskal <xstejs24@gmail.com> * Extend build timeout to due slow kafka download Signed-off-by: Jakub Stejskal <xstejs24@gmail.com> --------- Signed-off-by: Jakub Stejskal <xstejs24@gmail.com>
1 parent dd81a0e commit ae62c72

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/actions/build/release-artifacts/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ runs:
3232
run: |
3333
# Find all release artifacts and create tarball
3434
# This will include .tar.gz, .zip, .tgz (Helm charts), and any other release files
35-
find . -type f \( -name "*${{ inputs.releaseVersion }}*.tar.gz" -o \
36-
-name "*${{ inputs.releaseVersion }}*.zip" -o \
37-
-name "*${{ inputs.releaseVersion }}*.tgz" \) \
35+
find . -type f \( -iname "*${{ inputs.releaseVersion }}*.tar.gz" -o \
36+
-iname "*${{ inputs.releaseVersion }}*.zip" -o \
37+
-iname "*${{ inputs.releaseVersion }}*.tgz" \) \
3838
-exec tar -rvf release-${{ inputs.artifactSuffix }}-${{ inputs.releaseVersion }}.tar {} \;
3939
4040
- name: Upload release artifacts

.github/workflows/reusable-test-integrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
test-build-binaries:
6767
name: Build Binaries
6868
runs-on: ubuntu-latest
69-
timeout-minutes: 30
69+
timeout-minutes: 60
7070
steps:
7171
- name: Checkout ${{ inputs.repo }}
7272
uses: actions/checkout@v6

.github/workflows/test-integrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
nexusCheck: "kafka-bridge"
5151
javaVersion: "21"
5252
helmChartName: "none"
53-
releaseVersion: "6.6.6"
53+
releaseVersion: "6.6.6-rc1"
5454
imagesDir: "kafka-bridge-amd64.tar.gz"
5555
clusterOperatorBuild: false
5656

0 commit comments

Comments
 (0)