mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-05 07:20:12 +01:00
35 lines
902 B
YAML
35 lines
902 B
YAML
name: Release Artifacts
|
|
on:
|
|
release: [created]
|
|
jobs:
|
|
releaseJob:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.5.2
|
|
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v3.11.0
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
|
|
- name: Grant execute permission for gradlew
|
|
run: chmod +x gradlew
|
|
|
|
- name: Generate jar
|
|
run: ./gradlew clean createJar
|
|
|
|
- uses: Shopify/upload-to-release@v1
|
|
with:
|
|
name: Stirling-PDF.jar
|
|
path: ./build/libs/S-PDF*.jar
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
content-type: application/java-archive
|
|
|
|
- uses: Shopify/upload-to-release@v1
|
|
with:
|
|
name: Stirling-PDF.exe
|
|
path: ./build/launch4j/Stirling-PDF.exe
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
content-type: application/vnd.microsoft.portable-executable
|