From b40ae51f00b366df6a638fbcf229a3710492498f Mon Sep 17 00:00:00 2001 From: Evan Smith Date: Mon, 1 May 2023 19:56:21 +0100 Subject: [PATCH] Fix an issue where we were mounting a folder too deep --- .circleci/_config.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/_config.jsonnet b/.circleci/_config.jsonnet index d8e5499..8af0a7d 100644 --- a/.circleci/_config.jsonnet +++ b/.circleci/_config.jsonnet @@ -40,7 +40,7 @@ pipeline.new( working_directory='/home/circleci/banshee', steps=[ steps.checkout(), - steps.attach_workspace('/home/circleci/banshee/dist'), + steps.attach_workspace('/home/circleci/banshee'), { 'gh/setup': { version: '2.28.0' } }, steps.run('gh release create ${CIRCLE_TAG} --generate-notes --verify-tag', name='Create a new release'), steps.run('gh release upload ${CIRCLE_TAG} /home/circleci/banshee/dist/bin', name='Create a new release'),