Skip to content

Commit 27349ba

Browse files
committed
fix getting the manifest from the wrong directory
1 parent 670b292 commit 27349ba

File tree

1 file changed

+2
-19
lines changed

1 file changed

+2
-19
lines changed

.circleci/config.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -348,15 +348,9 @@ workflows:
348348
- test
349349
- build_and_push_test_images
350350

351-
- generate_manifest:
352-
<<: *run_for_numeric_tags
353-
<<: *release_requires
354-
355351
- publish-github-release-artifacts:
356352
<<: *run_for_numeric_tags
357353
<<: *release_requires
358-
requires:
359-
- generate_manifest
360354

361355
- publish-github-release-images:
362356
<<: *run_for_numeric_tags
@@ -481,24 +475,13 @@ jobs:
481475
goos: linux
482476
goarch: arm64
483477
platform: linux-arm64
484-
485-
- persist_to_workspace:
486-
root: .
487-
paths:
488-
- dist
489-
490-
generate_manifest:
491-
executor:
492-
name: go/default
493-
tag: "1.19"
494-
steps:
495-
- checkout
496478
- run: make generate-manifest
497479
- run: mkdir skupper-manifest
498480
- run: cp ./manifest.json skupper-manifest
499481
- persist_to_workspace:
500482
root: .
501483
paths:
484+
- dist
502485
- skupper-manifest
503486

504487
main_tests_minikube_local_cluster:
@@ -548,8 +531,8 @@ jobs:
548531
tar -zcf "${BASEDIR}/archives/skupper-cli-${VERSION}-$p.tgz" *
549532
fi
550533
done
551-
cp skupper-manifest/manifest.json "${BASEDIR}/archives"
552534
cd ${BASEDIR}
535+
cp "${BASEDIR}/skupper-manifest/manifest.json" "${BASEDIR}/archives"
553536
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -replace -prerelease -draft ${VERSION} "${BASEDIR}/archives"
554537
555538
publish-github-release-images:

0 commit comments

Comments
 (0)