Skip to content

Commit d8fc40a

Browse files
committed
📦👷 Remove unnecessary array brackets in GitHub workflow dependencies
1 parent c0d4e7a commit d8fc40a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎project_name/.github/workflows/{% if in_pypi %}build-and-publish.yml{% endif %}.jinja‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
publish-to-testpypi:
3737
if: github.event_name == 'push'
38-
needs: [build]
38+
needs: build
3939
runs-on: ubuntu-latest
4040
environment:
4141
name: testpypi
@@ -55,7 +55,7 @@ jobs:
5555

5656
publish-to-pypi:
5757
if: github.event_name == 'release'
58-
needs: [build]
58+
needs: build
5959
runs-on: ubuntu-latest
6060
environment:
6161
name: pypi

0 commit comments

Comments
 (0)