Skip to content

Commit

Permalink
Merge pull request #57 from ILikeYourHat/github-badges
Browse files Browse the repository at this point in the history
Added GitHub badges in README
  • Loading branch information
ILikeYourHat authored Dec 21, 2024
2 parents 887d83e + bcc4ec5 commit 291eaa0
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
11 changes: 11 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
changelog:
categories:
- title: Dependency updates
labels:
- dependencies
- title: Changes
labels:
- "*"
exclude:
labels:
- dependencies
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: "Check project health"
on: push
name: "Build"
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -17,5 +20,5 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Build app
- name: Build project
run: ./gradlew build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Release project"
name: "Publishing"
on:
push:
tags:
Expand All @@ -20,7 +20,7 @@ jobs:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Check project
- name: Build project
run: ./gradlew build

- name: Publish project
Expand All @@ -29,4 +29,4 @@ jobs:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_PRIVATE_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.GPG_PRIVATE_KEY_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.GPG_PRIVATE_KEY_PASSWORD }}
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Kudoku

---

[![Build](https://github.com/ilikeyourhat/kudoku/actions/workflows/build.yml/badge.svg)](https://github.com/ILikeYourHat/Kudoku/actions/workflows/build.yml)
[![Maven Central Version](https://img.shields.io/maven-central/v/io.github.ilikeyourhat.kudoku/kudoku)](https://central.sonatype.com/artifact/io.github.ilikeyourhat.kudoku/kudoku)
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/ilikeyourhat/kudoku/blob/master/LICENSE.md)

A powerful sudoku engine written in Kotlin.

## Usage
Expand Down

0 comments on commit 291eaa0

Please sign in to comment.