From 159edc89210286d0ef6230ab54fe57a2e496f975 Mon Sep 17 00:00:00 2001 From: Konloch Date: Fri, 23 Jul 2021 18:34:02 -0700 Subject: [PATCH] Delete maven.yml --- .github/workflows/maven.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml deleted file mode 100644 index f769a0a8..00000000 --- a/.github/workflows/maven.yml +++ /dev/null @@ -1,33 +0,0 @@ -# This will build the BCV repo and upload the package as an artifact - -name: Build BCV - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 8 - uses: actions/setup-java@v2 - with: - java-version: '8' - distribution: 'adopt' - - name: Build with Maven - run: mvn -B package --file pom.xml - - 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