Skip to content

Commit d06119d

Browse files
whummerclaude
andcommitted
fix: install miniflare extension from local checkout instead of git URL
The git URL approach with a slashed branch name (fix/ci-failures) causes pip inside the LocalStack extensions venv to fail. Since the code is already checked out by actions/checkout, install directly from the local path to avoid any git URL branch-name parsing issues. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 1ea5a8c commit d06119d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/miniflare.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ jobs:
3434
sudo apt-get install -y libvirt-dev
3535
pip install localstack localstack-ext
3636
37-
branchName=${GITHUB_HEAD_REF:-main}
38-
echo "Installing from branch name $branchName"
3937
localstack extensions init
40-
localstack extensions install "git+https://github.com/localstack/localstack-extensions.git@${branchName}#egg=localstack-extension-miniflare&subdirectory=miniflare"
38+
localstack extensions install "file://$(pwd)/miniflare"
4139
4240
DEBUG=1 localstack start -d
4341
localstack wait

0 commit comments

Comments
 (0)