Skip to content

Simplify voting book creator (#42) #41

Simplify voting book creator (#42)

Simplify voting book creator (#42) #41

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup
uses: actions/setup-java@v3
with:
java-version: 8
distribution: adopt
- name: cache
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: build
run: mvn install
- name: artifact
uses: actions/upload-artifact@v3
with:
name: Community.jar
path: target/Community.jar
if-no-files-found: error