Compare commits

...

2 Commits

Author SHA1 Message Date
Jesse Brault
c7b7ee8d2b Bump to v0.6.1.
Some checks failed
Ssg Check, Publish, and Release / ci (push) Failing after 3m57s
2025-11-08 16:32:03 -06:00
Jesse Brault
a29838ba17 Trying out Go gitea release action. 2025-11-08 16:30:32 -06:00
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
java-version: 25
- name: Check libraries
run: ./gradlew check
- name: Publish to git.jessebrault.com
@ -21,6 +21,6 @@ jobs:
- name: Create install distribution
run: ./gradlew installDist
- name: Release cli to git.jessebrault.com
uses: ncipollo/release-action@v1
uses: akkuman/gitea-release-action@v1
with:
artifacts: 'cli/build/distributions/*.zip,cli/build/distributions/*.tar'

View File

@ -4,7 +4,7 @@ plugins {
}
group 'com.jessebrault.ssg'
version '0.6.0-SNAPSHOT'
version '0.6.1'
repositories {
mavenCentral()

View File

@ -5,7 +5,7 @@ import picocli.CommandLine
@CommandLine.Command(
name = 'ssg',
mixinStandardHelpOptions = true,
version = '0.6.0-SNAPSHOT',
version = '0.6.1',
description = 'A static site generator which can interface with Gradle for high extensibility.',
subcommands = [SsgInit, SsgBuild, SsgWatch]
)