Skip to content

Update dependency org.apache.maven.plugins:maven-dependency-plugin to… #60

Update dependency org.apache.maven.plugins:maven-dependency-plugin to…

Update dependency org.apache.maven.plugins:maven-dependency-plugin to… #60

Workflow file for this run

name: Build docker image
on:
release:
types: [published]
jobs:
runs-on: ubuntu-latest

Check failure on line 8 in .github/workflows/dockerize.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dockerize.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
build-image:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Dockerize
run: docker build -f ./Dockerfile -t load-flow-service:${{ github.event.release.tag_name }}
- name: Publish
run: echo "No publishing action implemented"