From 7f96c49ce8020246d1e92e8df18ae0470e33d84d Mon Sep 17 00:00:00 2001 From: Dawson Hessler Date: Mon, 30 Oct 2023 10:41:45 -0400 Subject: [PATCH] Delete nightly.yml --- .github/workflows/nightly.yml | 44 ----------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/nightly.yml diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml deleted file mode 100644 index 06c6292..0000000 --- a/.github/workflows/nightly.yml +++ /dev/null @@ -1,44 +0,0 @@ -on: - push: - branches: [master] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 17.0.2 - uses: actions/setup-java@v1 - with: - java-version: 17.0 - - name: Cache Maven packages - uses: actions/cache@v2 - with: - path: ~/.m2 - key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - - name: Compile - run: mvn -B -Pclean install - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - draft: false - prerelease: true - - name: Upload Release Asset - id: upload-release-asset - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: Assembly/target/Assembly-*.jar - asset_name: KauriVPN.jar - asset_content_type: application/jar