Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 'build test'

on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
java: [ 11, 17, 21 ]

steps:
- name: Checkout...
uses: actions/checkout@v4

- name: Set up JDK...
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'

- name: Build and test...
run: mvn clean verify -U
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: 'create release'

on:
push:
tags:
- '[0-9]+.[0-9]+*'

jobs:
prepare-release:
runs-on: ubuntu-latest

outputs:
tag: ${{ steps.vars.outputs.tag }}
version: ${{ steps.vars.outputs.version }}
upload_url: ${{ steps.create_release.outputs.upload_url }}

steps:
- name: Checkout...
uses: actions/checkout@v4

- name: Build and test...
run: mvn clean verify -U

- name: Set version...
id: vars
run: |
RELEASE_TAG=${GITHUB_REF#refs/*/}
echo "tag=${RELEASE_TAG}" >> $GITHUB_OUTPUT
echo "version=${RELEASE_TAG}" >> $GITHUB_OUTPUT

- name: Create release...
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.vars.outputs.tag }}
body: JJava ${{ steps.vars.outputs.version }} release
draft: true
prerelease: false
files: ./target/jjava-${{ steps.vars.outputs.version }}.zip
fail_on_unmatched_files: true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ target/
.project
.settings
*.iml
release.properties
*.releaseBackup
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.dflib</groupId>
Expand All @@ -25,7 +23,7 @@
<connection>scm:git:https://github.com/dflib/jjava</connection>
<developerConnection>scm:git:ssh://git@github.com/dflib/jjava</developerConnection>
<url>https://github.com/dflib/jjava</url>
<tag>HEAD</tag>
<tag>${project.version}</tag>
</scm>

<dependencies>
Expand Down Expand Up @@ -133,6 +131,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
</project>