We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ffefc7e + 5dde9c3 commit 4d187d2Copy full SHA for 4d187d2
.github/workflows/deploy_pages.yml
@@ -1,4 +1,5 @@
1
name: deploy website
2
+
3
on:
4
push:
5
branches:
@@ -13,14 +14,14 @@ jobs:
13
14
submodules: "true"
15
- uses: actions/setup-python@v3
16
with:
- python-version: "3.7"
17
+ python-version: "3.8"
18
- - name: Install pipenv
19
- uses: dschep/install-pipenv-action@v1
+ - name: Install poetry
20
+ run: pip install poetry==1.8.3
21
22
- name: Install dependencies
23
run: |
- pipenv install
24
+ poetry install --no-root
25
26
- name: Install Task
27
uses: arduino/setup-task@v1
@@ -31,4 +32,4 @@ jobs:
31
32
# PAT to enable the that happens in the task 'publish_https'
33
GIT_PAT: ${{ secrets.MY_PAT }}
34
- pipenv run task publish_https
35
+ poetry run task publish_https
Pipfile
0 commit comments