From bac443ef3e7f2f2eff27613ad04249a47c1b21e3 Mon Sep 17 00:00:00 2001 From: Allan Niles Date: Tue, 24 Oct 2023 18:05:38 -0600 Subject: [PATCH] remove old build file --- .github/workflows/build.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 24953e8..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Build Jar! - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up JDK 8 - uses: actions/setup-java@v3 - with: - java-version: '8' - distribution: 'zulu' - - name: Build - run: ./build.sh - - name: Push Jar! - uses: EndBug/add-and-commit@v9 - with: - author_name: Allan Niles - author_email: allancoding.dev@gmail.com -