Skip to content

Commit e88e4f5

Browse files
msanftburgerdev
authored andcommitted
ci: add missing checkout step (#3791)
1 parent d3f32af commit e88e4f5

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/check-measurements-reproducibility.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20-
20+
with:
21+
ref: ${{ inputs.ref || github.ref }}
22+
2123
- name: Check reproducibility
2224
uses: ./.github/actions/check_measurements_reproducibility
2325
with:

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,11 @@ jobs:
244244
needs: [verify-inputs, os-image]
245245
runs-on: ubuntu-24.04
246246
steps:
247+
- name: Checkout
248+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
249+
with:
250+
ref: ${{ needs.verify-inputs.outputs.WORKING_BRANCH }}
251+
247252
- name: Check reproducibility
248253
uses: ./.github/actions/check_measurements_reproducibility
249254
with:

0 commit comments

Comments
 (0)