amélioration des modifications #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created | |
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle | |
name: All Package | |
on: [push] | |
jobs: | |
gradle: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '17.0.6' | |
distribution: 'zulu' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: 8.2 | |
- run: gradle jlinkZip | |
- run: gradle jpackage | |
- run: gradle shadowJar | |
- name: Upload ZIP as an artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: astre-jdk${{ matrix.java }}-${{ matrix.os }}-zip | |
path: build/distributions/astre-image.zip | |
retention-days: 4 | |
- name: Upload JAR as an artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: astre-jdk${{ matrix.java }}-${{ matrix.os }}-jar | |
path: build/libs/*.jar | |
retention-days: 4 | |
- name: Upload DMG as an artifact | |
if: matrix.os == 'macOS-latest' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: astre-jdk${{ matrix.java }}-${{ matrix.os }}-dmg | |
path: build/jpackage/*.dmg | |
retention-days: 4 | |
- name: Upload EXE as an artifact | |
if: matrix.os == 'windows-latest' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: astre-jdk${{ matrix.java }}-${{ matrix.os }}-exe | |
path: build/jpackage/*.exe | |
retention-days: 4 | |
- name: Upload MSI as an artifact | |
if: matrix.os == 'windows-latest' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: astre-jdk${{ matrix.java }}-${{ matrix.os }}-msi | |
path: build/jpackage/*.msi | |
retention-days: 4 | |
- name: Upload DEB as an artifact | |
if: matrix.os == 'ubuntu-latest' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: astre-jdk${{ matrix.java }}-${{ matrix.os }}-deb | |
path: build/jpackage/*.deb | |
retention-days: 4 | |
- name: Upload RPM as an artifact | |
if: matrix.os == 'ubuntu-latest' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: astre-jdk${{ matrix.java }}-${{ matrix.os }}-rpm | |
path: build/jpackage/*.rpm | |
retention-days: 4 | |
- name: Upload PKG as an artifact | |
if: matrix.os == 'macOS-latest' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: astre-jdk${{ matrix.java }}-${{ matrix.os }}-pkg | |
path: build/jpackage/*.pkg | |
retention-days: 4 |