From 64e00519127fa3ddc87b19c1559c975cecac0ecc Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Tue, 13 Feb 2024 13:16:22 -0500 Subject: [PATCH] start working on a github CI file using the Windows bundle CI file as base --- .github/workflows/ant.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ant.yml diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml new file mode 100644 index 0000000..3d0353f --- /dev/null +++ b/.github/workflows/ant.yml @@ -0,0 +1,25 @@ + +name: Java CI + +on: [push] + +jobs: + build: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + - name: build with script + run: ./build.sh + - name: Upload I2P-Easy-Install-Bundle-${{ github.sha }}-unsigned.exe + uses: actions/upload-artifact@v4 + with: + name: I2P-EXE-${{ github.sha }}-unsigned.exe + path: I2P-EXE-2.4.0.exe + +