Skip to content

Commit 31669a9

Browse files
committed
fix workflow execution
1 parent e3f03cb commit 31669a9

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/publish-final-dist.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Publish Distribution to PyPI
22

33
on:
44
push:
5-
branches:
6-
- master
75
tags:
86
- '[0-9]+.[0-9]+.[0-9]'
97

@@ -25,7 +23,7 @@ jobs:
2523
2624
- name: Install dependencies
2725
run: |
28-
poetry install --without docs tests
26+
poetry install --without docs,tests
2927
3028
- name: Build the package
3129
run: |

.github/workflows/publish-test-dist.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Publish Distribution to TestPyPI
22

33
on:
44
push:
5-
branches:
6-
- develop
75
tags:
86
- '[0-9]+.[0-9]+.[0-9]+-dev'
97

@@ -25,7 +23,7 @@ jobs:
2523
2624
- name: Install dependencies
2725
run: |
28-
poetry install --without docs tests
26+
poetry install --without docs,tests
2927
3028
- name: Build the package
3129
run: |

0 commit comments

Comments
 (0)