We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2796bcb commit 44d97f9Copy full SHA for 44d97f9
1 file changed
.github/workflows/ecr-release.yml
@@ -47,10 +47,13 @@ jobs:
47
python -m pip install virtualenv==20.39.0
48
- name: Build distribution
49
run: hatch build
50
+ - name: pip install
51
+ run: |
52
+ pip install -e .
53
- name: Get version from __about__.py
54
id: version
55
run: |
- VERSION=$(python -c "from src.aws_durable_execution_sdk_python_testing import __version__; print(__version__)")
56
+ VERSION=$(python -c "from aws_durable_execution_sdk_python_testing import __version__; print(__version__)")
57
echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT
58
- name: Configure AWS Credentials
59
uses: aws-actions/configure-aws-credentials@v4
0 commit comments