10 update detection of visits and places (#17) #6
This file contains hidden or 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: "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 |