Skip to content

10 update detection of visits and places (#17) #6

10 update detection of visits and places (#17)

10 update detection of visits and places (#17) #6

Workflow file for this run

---
name: "pre-release"
on:
push:
branches:
- "main"
jobs:
pre-release:
name: "Pre Release"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Set up JDK 24
uses: actions/setup-java@v4
with:
java-version: '24'
distribution: 'temurin'
cache: maven
- name: Build & Test
run: mvn --batch-mode --update-snapshots verify
- name: Create bundle
run: mkdir staging && cp target/*.jar staging
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
LICENSE
staging/*.jar