Skip to content

Commit

Permalink
start working on a github CI file using the Windows bundle CI file as…
Browse files Browse the repository at this point in the history
… base
  • Loading branch information
eyedeekay committed Feb 13, 2024
1 parent 7ab4502 commit 64e0051
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
@@ -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


0 comments on commit 64e0051

Please sign in to comment.