Skip to content

Commit

Permalink
forgot two 3.9 to 3.10 bumps in the ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
simeonreusch committed Aug 24, 2022
1 parent cd61d5b commit 5c03b1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: coveralls

- name: Echo tag name
run: echo "Tag is ${{ github.ref }}, Tagged is ${{ startsWith(github.ref, 'refs/tags/')}}, Python Check is ${{matrix.python-version == 3.9}}, Deploy is ${{ startsWith(github.ref, 'refs/tags/') && matrix.python-version == 3.9}}"
run: echo "Tag is ${{ github.ref }}, Tagged is ${{ startsWith(github.ref, 'refs/tags/')}}, Python Check is ${{matrix.python-version == 3.10}}, Deploy is ${{ startsWith(github.ref, 'refs/tags/') && matrix.python-version == 3.10}}"

# Build a tarball and push to Pypi if tagged with new version
- name: Build and publish
Expand All @@ -83,7 +83,7 @@ jobs:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}

- name: Merge pull request if from Dependabot
if: ${{success() && matrix.python-version == 3.9 && github.actor == 'dependabot[bot]'}}
if: ${{success() && matrix.python-version == 3.10 && github.actor == 'dependabot[bot]'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
Expand Down

0 comments on commit 5c03b1c

Please sign in to comment.