FUCKING FUCKING INDENTATION #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
name: Release Build | ||
on: | ||
release: | ||
types: [created] | ||
workflow_dispatch: | ||
permissions: | ||
contents: write | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: maven | ||
- name: Set up Maven 3.9.6 | ||
uses: stCarolas/setup-maven@v5 | ||
with: | ||
maven-version: 3.9.6 | ||
- name: Install Dependencies (Linux) | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get install -y build-essential automake libtool | ||
- name: Install Dependencies (Windows) | ||
if: runner.os == 'Windows' | ||
uses: microsoft/setup-msbuild@v2 | ||
- name: Install Dependencies (macOS) | ||
if: runner.os == 'macOS' | ||
run: | | ||
brew install automake autoconf libtool gcc | ||
- name: Build with Maven | ||
run: mvn clean package -B | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Package-${{ runner.os }} | ||
path: | | ||
${{ matrix.os == 'ubuntu-latest' && 'target/cubiomes-*.jar' || '' }} | ||
${{ matrix.os == 'macos-latest' && 'target/cubiomes-*-osx.jar' || '' }} | ||
${{ matrix.os == 'windows-latest' && 'target/cubiomes-*-windows64.jar' || '' }} | ||
release: | ||
name: Release | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Package-Linux | ||
path: ubuntu | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Package-macOS | ||
path: macos | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Package-Windows | ||
path: windows | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
ubuntu/*.jar | ||
macos/*.jar | ||
windows/*.jar | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: "*.jar" |