Bump to v0.1.3. Add Gitea CI pipeline.
Some checks failed
Groowt CI Pipeline / ci (push) Failing after 4s

This commit is contained in:
Jesse Brault 2025-02-15 21:04:26 -06:00
parent 0390d15fce
commit 7105686f80
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,19 @@
name: Groowt CI Pipeline
on:
push:
branches:
- main
tags:
- v*
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout the code.
uses: actions/checkout@v4
- name: Check libraries.
run: ./gradlew check
- name: Publish to git.jessebrault.com.
run: ./gradlew publishAllPublicationsToGiteaRepository
- name: Publish to archiva.jessebrault.com.
run: ./gradlew publishAllPublicationsToJbArchivaInternalRepository

View File

@ -4,7 +4,7 @@ plugins {
} }
group = 'groowt' group = 'groowt'
version = '0.1.2' version = '0.1.3'
repositories { repositories {
mavenCentral() mavenCentral()