Skip to content

Commit

Permalink
Try this on for size
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthHater committed Sep 8, 2021
1 parent 4c810e1 commit aa93310
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@ jobs:
# limit this to being run on regular commits, not the commits that semantic-release will create
if: github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'chore(release):')
runs-on: ubuntu-latest
concurrency: release
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install Python Poetry
uses: abatilo/actions-poetry@v2.1.0
with:
poetry-version: 1.1.8
- name: Configure poetry
shell: bash
run: python -m poetry config virtualenvs.in-project true
- name: Install dependencies
run: |
python -m pip install poetry --upgrade pip
poetry config virtualenvs.create false
poetry install
- name: View poetry version
run: poetry --version
- name: Semantic Release
Expand Down

0 comments on commit aa93310

Please sign in to comment.