Skip to content

wip

wip #9

Workflow file for this run

name: Makefile CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update && sudo apt-get install openjdk-17-jdk-headless
- uses: actions/checkout@v4
- run: git submodule update --init
- run: ./build-jar.sh
- run: ./build-jar-flatlaf.sh
- uses: actions/upload-artifact@v4
with:
path: '*.jar'
- run: ./test.sh
release:
runs-on: ubuntu-latest
needs: [build]
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/test-ci'
steps:
- uses: actions/download-artifact@v4
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: "rars-flatlaf.jar"