Skip to content

Commit

Permalink
OK
Browse files Browse the repository at this point in the history
  • Loading branch information
lhoguin committed Oct 22, 2024
1 parent a291b7c commit c1f073f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-make.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ jobs:
run: gpg --import rabbitmq-release-signing-key.asc

- name: Download package generic unix
id: ghr
id: secondary_dist
uses: dsaltares/fetch-gh-release-asset@master
with:
regex: true
file: "rabbitmq-server-generic-unix-[\\d.]*\\.tar.xz"
target: ./

- run: echo ${{ steps.ghr.outputs.version }}
- run: echo "${{ steps.secondary_dist.outputs.version }}"

- name: Verify package
run: gpg --verify rabbitmq-server-generic-unix-*.asc rabbitmq-server-generic-unix-*.tar.xz
Expand All @@ -107,7 +107,7 @@ jobs:

- name: RUN TESTS
run: |
make -C deps/rabbit ct-cluster_upgrade SECONDARY_DIST=${GITHUB_WORKSPACE}/rabbitmq_server-*/
make -C deps/rabbit ct-cluster_upgrade SECONDARY_DIST=${GITHUB_WORKSPACE}/rabbitmq_server-`echo -n ${{ steps.secondary_dist.outputs.version }} | sed s/v//`/
- name: UPLOAD TEST LOGS
if: always()
Expand Down

0 comments on commit c1f073f

Please sign in to comment.