Skip to content

fix: invalid height #483

fix: invalid height

fix: invalid height #483

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21
cache: 'maven'
- name: change version to SNAPSHOT
run: |
VER_TAG=$(git describe --tags --abbrev=0)
mvn versions:set -DnewVersion=${VER_TAG}-SNAPSHOT
- name: Build with Maven
run: mvn package
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
# Artifact name
name: Typhon.jar
# A file, directory or wildcard pattern that describes what to upload
path: target/**/typhon-*.jar