Add renovate.json #13
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
name: SORMAS BUILD ALL | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build with Maven | |
run: mvn install -B --no-transfer-progress -Pwith-dep-poms -f sormas-base/pom.xml | |
- name: Build App | |
working-directory: ./sormas-app | |
run: | | |
chmod +x ./gradlew | |
./gradlew assembleDebug | |
- name: Collect Artifacts | |
run: ant collect-all -buildfile sormas-base/build.xml | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
# Artifact name | |
name: Deployment Package | |
# Directory containing files to upload | |
path: deploy |