bcv-vf/.github/workflows/maven.yml

34 lines
903 B
YAML
Raw Normal View History

2021-07-24 01:37:47 +00:00
# This will build the BCV repo and upload the package as an artifact
2021-07-24 01:36:30 +00:00
2021-07-24 01:37:47 +00:00
name: Build BCV
2021-07-24 01:36:30 +00:00
on:
push:
2021-07-24 01:37:47 +00:00
branches: [ main ]
2021-07-24 01:36:30 +00:00
pull_request:
2021-07-24 01:37:47 +00:00
branches: [ main ]
2021-07-24 01:36:30 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-07-24 01:37:47 +00:00
- name: Set up JDK 8
2021-07-24 01:36:30 +00:00
uses: actions/setup-java@v2
with:
2021-07-24 01:37:47 +00:00
java-version: '8'
2021-07-24 01:36:30 +00:00
distribution: 'adopt'
- name: Build with Maven
run: mvn -B package --file pom.xml
2021-07-24 01:37:47 +00:00
- name: Extract Maven project version
run: echo ::set-output name=version::$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
id: project
- name: 'Upload Artifact'
uses: actions/upload-artifact@v2
with:
name: Bytecode-Viewer-${{ steps.project.outputs.version }}-SNAPSHOT
path: target/Bytecode-Viewer-${{ steps.project.outputs.version }}.jar
retention-days: 90