Skip to content

Commit a873f82

Browse files
committed
Fix dangling reference post merge
Quick-Functional: true Run-GHA: true Required-githooks: true Skip-build: true Skip-test: true Skip-unit-tests: true Signed-off-by: Margaret Lawson <mlawsonca@google.com>
1 parent 8e292ab commit a873f82

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/gcp-weekly.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,13 @@ jobs:
172172
id: create-repo
173173
if: steps.build-rpm.outcome == 'success'
174174
continue-on-error: true
175-
run: CHROOT_NAME=$CHROOT_NAME ci/rpm/create_repo.sh
175+
run: |
176+
set -eux
177+
repo_path="$REPO_PATH$GITHUB_RUN_NUMBER/artifact/artifacts/${{ !inputs.COVFN_DISABLED && 'bullseye/' || '' }}"
178+
mkdir -p "$repo_path$TARGET"
179+
cp -a mock_result/*.rpm "$repo_path$TARGET"
180+
cd "$repo_path$TARGET"
181+
createrepo .
176182
- name: Test repo
177183
id: test-repo
178184
if: steps.create-repo.outcome == 'success'

0 commit comments

Comments
 (0)