Skip to content

Commit 37539d0

Browse files
committed
GitHub Actions: Relax the regex to match the generix-unix archive
[Why] Our alpha packages published to `rabbitmq/server-packages` use letters in addition to digits and dots. [How] Accept any string that starts with a digit as the version here. We just enforce the prefix and the filename extension. The digit at the beginning it here to exclude the `rabbitmq-server-generic-unix-latest-toolchain-*.tar.xz` archive.
1 parent c648b32 commit 37539d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-make-target.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
with:
6060
version: 'tags/v4.0.3'
6161
regex: true
62-
file: "rabbitmq-server-generic-unix-[\\d.]*\\.tar\\.xz"
62+
file: "rabbitmq-server-generic-unix-\\d.+\\.tar\\.xz"
6363
target: ./
6464

6565
- name: MIXED CLUSTERS - SETUP SECONDARY_DIST

0 commit comments

Comments
 (0)