File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -14,19 +14,20 @@ jobs:
14
14
# limit this to being run on regular commits, not the commits that semantic-release will create
15
15
if : github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'chore(release):')
16
16
runs-on : ubuntu-latest
17
+ concurrency : release
17
18
steps :
18
19
- name : Checkout code
19
20
uses : actions/checkout@v2
21
+ with :
22
+ fetch-depth : 0
20
23
- uses : actions/setup-python@v2
21
24
with :
22
25
python-version : 3.7
23
- - name : Install Python Poetry
24
-
25
- with :
26
- poetry-version : 1.1.8
27
- - name : Configure poetry
28
- shell : bash
29
- run : python -m poetry config virtualenvs.in-project true
26
+ - name : Install dependencies
27
+ run : |
28
+ python -m pip install poetry --upgrade pip
29
+ poetry config virtualenvs.create false
30
+ poetry install
30
31
- name : View poetry version
31
32
run : poetry --version
32
33
- name : Semantic Release
You can’t perform that action at this time.
0 commit comments