Skip to content

Clean up Dockerfile #18

Clean up Dockerfile

Clean up Dockerfile #18

Workflow file for this run

name: Publish to Docker Hub
on:
pull_request:
release:
types: [created]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
uses: FAIRDataTeam/github-workflows/.github/workflows/maven-verify.yml@v2
with:
# todo: enable tests when test duration has been minimized
mvn-options: "-DskipTests"
publish:
needs: verify
uses: FAIRDataTeam/github-workflows/.github/workflows/docker-publish.yml@v2
secrets: inherit
with:
file: './Dockerfile'
push: ${{ github.event_name == 'release' && github.event.action == 'created' }}