Skip to content

Commit 3f16a1c

Browse files
authored
Merge pull request #9430 from rabbitmq/rin/additional-fix-nightly-build-comparison
Fix branch checkout in check-build-system-equivalence.yaml
2 parents 7f2b8f9 + 929794c commit 3f16a1c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/check-build-system-equivalence-release-branches.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ jobs:
66
check-main:
77
uses: ./.github/workflows/check-build-system-equivalence.yaml
88
with:
9-
ref: main
9+
ref: refs/heads/main
1010
erlang_version: 26.0
1111
elixir_version: 1.15
1212
project_version: 3.13.0
1313

1414
check-v3_12_x:
1515
uses: ./.github/workflows/check-build-system-equivalence.yaml
1616
with:
17-
ref: v3.12.x
17+
ref: refs/heads/v3.12.x
1818
erlang_version: 26.0
1919
elixir_version: 1.15
2020
project_version: 3.12.0
2121

2222
check-v3_11_x:
2323
uses: ./.github/workflows/check-build-system-equivalence.yaml
2424
with:
25-
ref: v3.11.x
25+
ref: refs/heads/v3.11.x
2626
erlang_version: 26.0
2727
elixir_version: 1.15
2828
project_version: 3.11.0

.github/workflows/check-build-system-equivalence.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: CHECKOUT REPOSITORY
4444
uses: actions/checkout@v4
4545
with:
46-
ref: ${{ github.event.inputs.ref || github.ref }}
46+
ref: ${{ inputs.ref || github.ref }}
4747
- name: CONFIGURE ERLANG
4848
uses: erlef/[email protected]
4949
with:
@@ -77,7 +77,7 @@ jobs:
7777
uses: actions/checkout@v4
7878
with:
7979
path: rabbitmq
80-
ref: ${{ github.event.inputs.ref || github.ref }}
80+
ref: ${{ inputs.ref || github.ref }}
8181
- name: CONFIGURE ERLANG
8282
uses: erlef/[email protected]
8383
with:
@@ -115,7 +115,7 @@ jobs:
115115
uses: actions/checkout@v4
116116
with:
117117
path: rabbitmq-server
118-
ref: ${{ github.event.inputs.ref || github.ref }}
118+
ref: ${{ inputs.ref || github.ref }}
119119
- name: CONFIGURE ERLANG
120120
uses: erlef/[email protected]
121121
with:

0 commit comments

Comments
 (0)