Skip to content

Commit

Permalink
Fix dangling reference post merge
Browse files Browse the repository at this point in the history
Quick-Functional: true
Run-GHA: true
Required-githooks: true
Skip-build: true
Skip-test: true
Skip-unit-tests: true

Signed-off-by: Margaret Lawson <[email protected]>
  • Loading branch information
mlawsonca committed Jan 23, 2025
1 parent 8e292ab commit 7c269ed
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/gcp-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,13 @@ jobs:
id: create-repo
if: steps.build-rpm.outcome == 'success'
continue-on-error: true
run: CHROOT_NAME=$CHROOT_NAME ci/rpm/create_repo.sh
run: |
set -eux
repo_path="$REPO_PATH$GITHUB_RUN_NUMBER/artifact/artifacts/"
mkdir -p "$repo_path$TARGET"
cp -a mock_result/*.rpm "$repo_path$TARGET"
cd "$repo_path$TARGET"
createrepo .
- name: Test repo
id: test-repo
if: steps.create-repo.outcome == 'success'
Expand Down

0 comments on commit 7c269ed

Please sign in to comment.