Skip to content

Initial Open Source commit (CORE-291) #1

Initial Open Source commit (CORE-291)

Initial Open Source commit (CORE-291) #1

Workflow file for this run

name: Maven Build
# Run workflow for any push to a branch
on:
push:
branches:
- '**'
tags:
- '**'
workflow_dispatch:
# Only permit one build per branch/tag
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: ${{ !contains(github.ref_name, 'release/') }}
jobs:
maven-build:
uses: Telicent-oss/shared-workflows/.github/workflows/maven.yml@main
with:
# Some Docker based tests in this repository but should be fine to pull the images we need without login
USES_DOCKERHUB_IMAGES: false
# Want SNAPSHOTs to be published from main
PUBLISH_SNAPSHOTS: true
MAIN_BRANCH: main
# If running in debug mode, use appropriate logging
MAVEN_DEBUG_ARGS: -Dlogback.configurationFile=logback-debug.xml

Check failure on line 27 in .github/workflows/maven.yml

View workflow run for this annotation

GitHub Actions / Maven Build

Invalid workflow file

The workflow is not valid. .github/workflows/maven.yml (Line: 27, Col: 25): Invalid input, MAVEN_DEBUG_ARGS is not defined in the referenced workflow.
JAVA_VERSION: 21
docker-build:
needs: maven-build
uses: telicent-oss/shared-workflows/.github/workflows/docker-push-to-registries.yml@main
with:
APP_NAME: smart-cache-debug-tools
APP_NAME_PREFIX: ""
PATH: .
DOCKERFILE: docker/Dockerfile
VERSION: ${{ needs.maven-build.outputs.version }}
TARGET: smart-cache-debug-tools
BUILD_ARGS: |
PROJECT_VERSION=${{ needs.maven-build.outputs.version }}
USES_MAVEN: true
JAVA_VERSION: 21
secrets: inherit