Skip to content

Commit aa93310

Browse files
committed
Try this on for size
1 parent 4c810e1 commit aa93310

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff 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/[email protected]
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

0 commit comments

Comments
 (0)