From 98494c02fe57d5c86e286348adce2e7af3875bad Mon Sep 17 00:00:00 2001 From: "Felipe M." Date: Fri, 27 Oct 2023 16:59:09 +0200 Subject: [PATCH] updated deploy workflow --- .github/workflows/deploy.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a298883..caf298c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,11 +12,10 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.10" - - name: Install python dependencies + python-version: "3.11" + - name: Install lektor run: | - python -m pip install --upgrade poetry - poetry install + pipx install lektor - name: Build site run: make build - name: Publish to GitHub Pages