Skip to content

Migrer fra Jenkins til GitHub Actions (libPipelineMvnCentral*) #4

Migrer fra Jenkins til GitHub Actions (libPipelineMvnCentral*)

Migrer fra Jenkins til GitHub Actions (libPipelineMvnCentral*) #4

Workflow file for this run

name: Autobuild library for all branches, does not release
on:
push:
branches:
- '**'
- '!dependabot/**'
- '!combined-prs-branch'
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
build:
if: |
github.event_name == 'workflow_dispatch' ||
github.event_name == 'push' ||
(github.event_name == 'pull_request' && startsWith(github.head_ref, 'dependabot/'))
uses: ks-no/github-actions-public/.github/workflows/java-library-build.yml@main
with:
java_version: 'java17'
is_release: false
runner: 'ubuntu-latest'
secrets: inherit