Skip to content

Commit

Permalink
Installing python package in docker deploy job (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
lewis-chambers authored Jul 23, 2024
1 parent 623f07c commit 251f44c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/deploy-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ jobs:
if: steps.check_file.outputs.file_exists == 'true'
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Build with docker
if: steps.check_file.outputs.file_exists == 'true'
env:
Expand Down

0 comments on commit 251f44c

Please sign in to comment.