Skip to content

Commit cb8810d

Browse files
committed
Troubleshoot github action
1 parent 845129b commit cb8810d

File tree

3 files changed

+44
-44
lines changed

3 files changed

+44
-44
lines changed

.github/workflows/deploy_pages.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ name: deploy website
55
# - source
66
on: push
77

8-
env:
9-
POETRY_HOME: /opt/poetry
10-
118
jobs:
129
build:
1310
runs-on: ubuntu-latest
@@ -17,12 +14,10 @@ jobs:
1714
submodules: "true"
1815
- uses: actions/setup-python@v3
1916
with:
20-
python-version: "3.7"
17+
python-version: "3.8"
2118

2219
- name: Install poetry
23-
run: |
24-
python3 -m venv $POETRY_HOME
25-
$POETRY_HOME/bin/pip install poetry==1.2.0
20+
run: pip install poetry==1.8.3
2621

2722
- name: Install dependencies
2823
run: |

poetry.lock

Lines changed: 41 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ readme = "README.md"
88
packages = [{include = "drorata"}]
99

1010
[tool.poetry.dependencies]
11-
python = "^3.7"
11+
python = "^3.8"
1212
markdown = "3.4.1"
1313
ghp-import = "2.1.0"
1414
pelican = "4.8.0"

0 commit comments

Comments
 (0)