Added Bootstrap and updated CSS for Wilma theme to make it responsive #546
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: Build | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
MAVEN_OPTS: -Xmx1024M | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Clone Vitro | |
run: git clone https://github.com/vivo-project/Vitro.git ../Vitro | |
- name: Maven Cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-cache-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-cache-m2- | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Maven Build | |
run: | | |
cd ../VIVO | |
mvn clean package -s installer/example-settings.xml |