Skip to content

Commit 431d87a

Browse files
authored
Merge pull request #1231 from folio-org/RMB-1048-workflows-maven
RMB-1048 Enable maven workflows
2 parents 347df22 + cdc1b9d commit 431d87a

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/maven.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Maven central workflow
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
maven:
13+
uses: folio-org/.github/.github/workflows/maven.yml@v1
14+
# Only handle push events from the main branch or tags, to decrease PR noise
15+
if: github.ref_name == github.event.repository.default_branch || github.event_name != 'push' || github.ref_type == 'tag'
16+
secrets: inherit
17+
with:
18+
do-docker: false
19+
publish-module-descriptor: false
File renamed without changes.

0 commit comments

Comments
 (0)