Compare commits
17 Commits
i2p-mac-
...
broken-tag
Author | SHA1 | Date | |
---|---|---|---|
![]() |
bb6b93a556 | ||
![]() |
72de4bc4df | ||
![]() |
f6026af5ba | ||
![]() |
cb450487f8 | ||
![]() |
c65aea0ed9 | ||
![]() |
ec03127603 | ||
![]() |
fa6ebc8b94 | ||
![]() |
08cec51dce | ||
![]() |
6b493c8832 | ||
![]() |
60a9fb156e | ||
![]() |
14b66d8f25 | ||
![]() |
3e993e72c6 | ||
![]() |
78339ad6eb | ||
![]() |
0cf574156a | ||
![]() |
6a63970a7f | ||
![]() |
b74e3ec5a5 | ||
![]() |
5d0b85e869 |
24
.github/workflows/ant.yml
vendored
24
.github/workflows/ant.yml
vendored
@@ -9,6 +9,8 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up JDK 21
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
@@ -20,6 +22,26 @@ jobs:
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: I2P-${{ github.sha }}.dmg
|
||||
path: I2P-1.0.dmg
|
||||
path: I2P-*.dmg
|
||||
|
||||
build-22:
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up JDK 22
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: '22'
|
||||
distribution: 'temurin'
|
||||
- name: build with script
|
||||
run: ./build.sh
|
||||
- name: Upload I2P-${{ github.sha }}.dmg
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: I2P-${{ github.sha }}-22.dmg
|
||||
path: I2P-*.dmg
|
||||
|
||||
|
||||
|
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
@@ -6,7 +6,8 @@ on:
|
||||
push:
|
||||
# Sequence of patterns matched against refs/tags
|
||||
tags:
|
||||
- '*.*.*' # Release 1.2.3
|
||||
- 'i2p-mac-*.*.*' # Release 1.2.3
|
||||
- 'i2p-mac-*.*.*-*' # Release 1.2.3
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
4
build.sh
4
build.sh
@@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
export GITHUB_TAG=$(git describe --tags --abbrev=0 | sed 's|i2p||g' | tr -d [a-z-])
|
||||
git describe --tags `git rev-list --tags --max-count=1` || exit 1
|
||||
export GITHUB_TAG=$(git describe --tags `git rev-list --tags --max-count=1` | sed 's|i2p||g' | tr -d a-z-)
|
||||
|
||||
if [ -z "$I2P_VERSION" ]; then
|
||||
I2P_VERSION="i2p-$GITHUB_TAG"
|
||||
|
@@ -9,9 +9,9 @@
|
||||
|
||||
|
||||
# Uncomment/Edit this line to include the version number in the config file
|
||||
I2P_VERSION=i2p-2.4.0
|
||||
I2P_VERSION=i2p-2.7.0
|
||||
# Uncomment/Edit this line to change the version number that you pass to jpackage
|
||||
I2P_RELEASE_VERSION=2.4.0
|
||||
I2P_RELEASE_VERSION=2.7.0
|
||||
# Uncomment/Edit this line to include the build number in the config file
|
||||
# I2P_BUILD_NUMBER=1
|
||||
|
||||
|
Reference in New Issue
Block a user