Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@ jobs:
poetry config http-basic.codeartifact aws $CODEARTIFACT_AUTH_TOKEN
echo "✅ CodeArtifact authentication configured"

- name: regenerate-lockfile
run: |
set -e
echo "Regenerating poetry.lock..."
poetry update --lock
echo "✅ Lockfile regenerated"

- name: install-project
shell: bash
run: |
Expand Down Expand Up @@ -260,6 +267,13 @@ jobs:
poetry config http-basic.codeartifact aws $CODEARTIFACT_AUTH_TOKEN
echo "✅ CodeArtifact authentication configured"

- name: regenerate-lockfile
run: |
set -e
echo "Regenerating poetry.lock..."
poetry update --lock
echo "✅ Lockfile regenerated"

- name: install-project
shell: bash
run: |
Expand Down
Loading