Skip to content

Commit

Permalink
Update install just recipe and all GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AetherUnbound committed Mar 3, 2024
1 parent 7cc57f6 commit 66793a0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"

- name: Install Poetry
uses: snok/install-poetry@v1

- name: Generate docs
run: |
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ jobs:
uses: docker/build-push-action@v5
with:
push: true
# Build the slimmer production target
target: production
build-args: IS_PROD=true
tags: |
ghcr.io/${{ env.image_name }}:${{ github.sha }}
ghcr.io/${{ env.image_name }}:${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ service-account-key:
@([ ! -f service_account_key.json ] && touch service_account_key.json) || true


# Install dev dependencies into currently activated python environment
# Install dev dependencies using poetry
install:
pip3 install -r requirements-dev.txt
poetry install

# Build all containers
build: dotenv service-account-key
Expand Down

0 comments on commit 66793a0

Please sign in to comment.