We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ff3b0e commit df11ebaCopy full SHA for df11eba
1 file changed
.github/workflows/publish.yaml
@@ -38,13 +38,14 @@ jobs:
38
SIGNING_KEY_FILE_AS_BASE64_STRING: ${{ secrets.SIGNING_KEY_FILE_AS_BASE64_STRING }}
39
40
publish-maven-central:
41
- if: |
42
- github.event_name == 'workflow_dispatch' ||
43
- (
44
- github.event_name == 'pull_request' &&
45
- github.event.pull_request.merged == true &&
46
- startsWith(github.event.pull_request.head.ref, 'release/')
47
- )
+ if: false # Temporarily disabled
+ # if: |
+ # github.event_name == 'workflow_dispatch' ||
+ # (
+ # github.event_name == 'pull_request' &&
+ # github.event.pull_request.merged == true &&
+ # startsWith(github.event.pull_request.head.ref, 'release/')
48
+ # )
49
uses: rees46/workflow/.github/workflows/reusable-android-publish.yaml@master
50
permissions: write-all
51
with:
0 commit comments