File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments