File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,19 +14,20 @@ jobs:
1414 # limit this to being run on regular commits, not the commits that semantic-release will create
1515 if : github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'chore(release):')
1616 runs-on : ubuntu-latest
17+ concurrency : release
1718 steps :
1819 - name : Checkout code
1920 uses : actions/checkout@v2
21+ with :
22+ fetch-depth : 0
2023 - uses : actions/setup-python@v2
2124 with :
2225 python-version : 3.7
23- - name : Install Python Poetry
24- uses : abatilo/actions-poetry@v2.1.0
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
3031 - name : View poetry version
3132 run : poetry --version
3233 - name : Semantic Release
You can’t perform that action at this time.
0 commit comments