Fix search box background in subs view + windows dark #1356
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: Java CI with Maven | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
java-version: [ '8', '11', '17' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'temurin' | |
cache: maven | |
- name: Package with Maven | |
id: maven_package | |
run: mvn package --file pom.xml | |
- name: Stage JAR file artifact | |
run: mkdir staging && cp uis/target/BiglyBT.jar staging/ | |
if: steps.maven_package.outcome == 'success' | |
- name: Publish artifact | |
if: steps.maven_package.outcome == 'success' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: BiglyBT_${{ runner.os }}_JDK_${{ matrix.java-version }} | |
path: staging | |