Skip to content

Commit

Permalink
fix workflow execution
Browse files Browse the repository at this point in the history
  • Loading branch information
ben9809 committed May 11, 2024
1 parent e3f03cb commit 31669a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/publish-final-dist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Publish Distribution to PyPI

on:
push:
branches:
- master
tags:
- '[0-9]+.[0-9]+.[0-9]'

Expand All @@ -25,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
poetry install --without docs tests
poetry install --without docs,tests
- name: Build the package
run: |
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/publish-test-dist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Publish Distribution to TestPyPI

on:
push:
branches:
- develop
tags:
- '[0-9]+.[0-9]+.[0-9]+-dev'

Expand All @@ -25,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
poetry install --without docs tests
poetry install --without docs,tests
- name: Build the package
run: |
Expand Down

0 comments on commit 31669a9

Please sign in to comment.