Added MPS to default image and slim image without #57
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs Build without Docker | |
name: workflow-build | |
on: | |
push: | |
branches: | |
- '*' | |
env: | |
IMAGE_NAME: terraform-mps-plugin | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
# validates, compile, test and packages it | |
- name: Build Project | |
run: sh ./mvnw package -DskipTests | |
- name: Run | |
# does not work without the full stack - SKIP | |
# run: sh ./mvnw spring-boot:run -DskipTests | |
run: sh -c "echo 'nothing to run'" | |