We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e80877 commit 04f4df8Copy full SHA for 04f4df8
.github/workflows/package.yml
@@ -76,8 +76,12 @@ jobs:
76
name: Build a PyPI-compatible index
77
runs-on: ubuntu-latest
78
needs: [create_release_artifacts]
79
- if: ${{ always() && !failure() && !cancelled() &&
80
- (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository))}}
+ if: |
+ ${{ 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
+ )
85
permissions:
86
contents: write
87
actions: read
@@ -102,4 +106,3 @@ jobs:
102
106
103
107
- name: Deploy to GitHub Pages
104
108
uses: actions/deploy-pages@v4
105
-
0 commit comments