mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
finish
This commit is contained in:
parent
509a305985
commit
24717dde19
11
.github/workflows/multiOSReleases.yml
vendored
11
.github/workflows/multiOSReleases.yml
vendored
@ -1,15 +1,12 @@
|
||||
name: Test Installers Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- testStuff
|
||||
workflow_dispatch:
|
||||
|
||||
release:
|
||||
types: [created]
|
||||
permissions:
|
||||
contents: write
|
||||
packages: write
|
||||
|
||||
jobs:
|
||||
build-installers:
|
||||
strategy:
|
||||
@ -87,8 +84,8 @@ jobs:
|
||||
# Upload installer as artifact for testing
|
||||
- name: Upload Installer Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Stirling-PDF-${{ matrix.platform }}.${{ matrix.ext }}
|
||||
with:
|
||||
name: Stirling-PDF-${{ matrix.platform }}-installer.{{ matrix.ext }}
|
||||
path: Stirling-PDF-${{ steps.versionNumber.outputs.versionNumber }}-${{ matrix.platform }}.${{ matrix.ext }}
|
||||
retention-days: 1
|
||||
if-no-files-found: error
|
11
build.gradle
11
build.gradle
@ -43,7 +43,6 @@ repositories {
|
||||
url 'https://build.shibboleth.net/maven/releases'
|
||||
}
|
||||
maven { url "https://build.shibboleth.net/maven/releases" }
|
||||
// Add Maven repository for JCEF
|
||||
maven { url "https://maven.pkg.github.com/jcefmaven/jcefmaven" }
|
||||
|
||||
}
|
||||
@ -93,23 +92,19 @@ def getMacVersion(String version) {
|
||||
}
|
||||
|
||||
jpackage {
|
||||
// Input directory containing the jar
|
||||
input = "build/libs"
|
||||
|
||||
// Application details
|
||||
appName = "Stirling-PDF"
|
||||
appVersion = project.version
|
||||
vendor = "Stirling-Software"
|
||||
appDescription = "Stirling PDF - Your Local PDF Editor"
|
||||
|
||||
// Main application configuration
|
||||
mainJar = "Stirling-PDF-${project.version}.jar"
|
||||
mainClass = "org.springframework.boot.loader.launch.JarLauncher"
|
||||
|
||||
// Default icon configuration
|
||||
icon = "src/main/resources/static/favicon.ico"
|
||||
|
||||
// Application description
|
||||
appDescription = "Stirling PDF - Your Local PDF Editor"
|
||||
|
||||
|
||||
// JVM Options
|
||||
javaOptions = [
|
||||
@ -123,7 +118,7 @@ jpackage {
|
||||
|
||||
]
|
||||
|
||||
// Enable verbose output
|
||||
|
||||
verbose = true
|
||||
|
||||
destination = "${projectDir}/build/jpackage"
|
||||
|
Loading…
Reference in New Issue
Block a user