Skip to content
Permalink
c0360aa1ea
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
View runs Go to file
 
 
Cannot retrieve contributors at this time
45 lines (35 sloc) 1.04 KB
name: CI with mvn
on:
push:
branches: [ main ]
paths: 'DeFi-Data-Engine/**'
pull_request:
branches: [ main ]
paths: 'DeFi-Data-Engine/**'
workflow_dispatch:
jobs:
buildDataEngine:
runs-on: [ self-hosted ]
defaults:
run:
working-directory: "DeFi-Data-Engine/DeFi Data Engine/"
steps:
- uses: actions/checkout@v3
- name: Build with Maven
run: mvn clean compile assembly:single -Dmaven.skip.test=true
- name: Upload jar
uses: actions/upload-artifact@v3
with:
name: DEjar
path: "DeFi-Data-Engine/DeFi Data Engine/target/defi-data-engine-0.0.1-jar-with-dependencies.jar"
- name: Deploy data engine
run: java -jar defi-data-engine-0.0.1-jar-with-dependencies.jar &
# buildRestAPI:
# runs-on: [ self-hosted ]
# defaults:
# run:
# working-directory: "DeFi-Data-Engine/Rest Application/"
# steps:
# - uses: actions/checkout@v3
# - name: Build with Maven
# run: mvn -B package --file pom.xml