Skip to content

OZ-668: Add Ability to run Ozone in a single and standalone (distro-embedded) Docker Compose file #194

OZ-668: Add Ability to run Ozone in a single and standalone (distro-embedded) Docker Compose file

OZ-668: Add Ability to run Ozone in a single and standalone (distro-embedded) Docker Compose file #194

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
release:
types: [published]
jobs:
validate:
uses: mekomsolutions/shared-github-workflow/.github/workflows/maven-build-test.yml@main
with:
java-version: "8"
maven-phase: "install"
maven-args: "-P validator" # OMRS config validation
secrets:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
release:
if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'release' }}
needs: validate
uses: mekomsolutions/shared-github-workflow/.github/workflows/maven-publish.yml@main
secrets:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}

Check failure on line 29 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 29, Col: 28): Invalid secret, DOCKER_HUB_USERNAME is not defined in the referenced workflow. .github/workflows/ci.yml (Line: 30, Col: 28): Invalid secret, DOCKER_HUB_PASSWORD is not defined in the referenced workflow.
DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }}