Fix blurry title on extra radar options screen #14
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: "CivVoxelMap Unstable Gradle CI" | |
on: | |
push: | |
branches: | |
- "master" | |
paths: | |
- "src/**/*" | |
workflow_dispatch: {} | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v3" | |
- name: "Set up JDK 21" | |
uses: "actions/setup-java@v3" | |
with: | |
java-version: 21 | |
distribution: "corretto" | |
cache: "gradle" | |
- name: "Compiling CivVoxelMap" | |
run: "./gradlew build" | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Nightly (Unstable)" | |
files: | | |
LICENCE | |
dist/*.jar |