We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e292ab commit a873f82Copy full SHA for a873f82
.github/workflows/gcp-weekly.yml
@@ -172,7 +172,13 @@ jobs:
172
id: create-repo
173
if: steps.build-rpm.outcome == 'success'
174
continue-on-error: true
175
- run: CHROOT_NAME=$CHROOT_NAME ci/rpm/create_repo.sh
+ 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 .
182
- name: Test repo
183
id: test-repo
184
if: steps.create-repo.outcome == 'success'
0 commit comments