wisemapping-open-source/.github/workflows/maven.yml

36 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2024-03-25 01:42:45 +08:00
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: WiseMapping API
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2024-03-25 01:56:03 +08:00
- name: Set up JDK 21
2024-03-25 01:42:45 +08:00
uses: actions/setup-java@v3
with:
java-version: '21'
2024-03-25 02:01:30 +08:00
distribution: 'zulu'
2024-03-25 01:42:45 +08:00
cache: maven
- name: Build with Maven
2024-03-25 10:04:52 +08:00
run: mvn -B clean package --file wise-api/pom.xml
2024-03-25 02:13:31 +08:00
- name: Build the Docker image
2024-03-25 02:19:09 +08:00
run: docker build -t wisemapping/wisemapping-api:latest wise-api
2024-03-25 01:42:45 +08:00
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
2024-03-25 02:08:38 +08:00
#- name: Update dependency graph
# uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6