Skip to content

Commit bbea9de

Browse files
syntax v2
1 parent 04f4df8 commit bbea9de

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/package.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,19 @@ jobs:
7272
env:
7373
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7474

75-
publish_pypi_index:
75+
publish_pypi_index:
7676
name: Build a PyPI-compatible index
7777
runs-on: ubuntu-latest
7878
needs: [create_release_artifacts]
7979
if: |
80-
${{ always() && !failure() && !cancelled()}} &&
81-
(
82-
github.event_name == 'push' ||
83-
github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
84-
)
80+
always() && !failure() && !cancelled() &&
81+
(
82+
github.event_name == 'push' ||
83+
(
84+
github.event_name == 'pull_request' &&
85+
github.event.pull_request.head.repo.full_name == github.repository
86+
)
87+
)
8588
permissions:
8689
contents: write
8790
actions: read

0 commit comments

Comments
 (0)