Skip to content

Commit c005a3f

Browse files
committed
EDGAPIUTL-40: Use GitHub Actions Workflows for Maven replacing Jenkinsfile
https://folio-org.atlassian.net/browse/EDGAPIUTL-40 See Epic https://folio-org.atlassian.net/browse/FOLIO-4443 for details.
1 parent 990f127 commit c005a3f

2 files changed

Lines changed: 19 additions & 4 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

Jenkinsfile

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)