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
6 changes: 6 additions & 0 deletions .github/src_filters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
src:
- '**/src/**'
- '**/build.gradle'
- '**/gradle.lockfile'
- '**/gradle.settings'
- '.github/**'
25 changes: 0 additions & 25 deletions .github/workflows/build.yaml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
push:
workflow_dispatch:
inputs:
force:
default: false
description: Force all steps (ignore changes)
required: false
type: boolean

name: ci

jobs:
ci:
permissions: read-all
uses: mxenabled/path-tools/.github/workflows/ci.yml@master
with:
force: ${{ inputs.force != '' && inputs.force }}
java-version: '17'
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
workflow_dispatch:
push:
branches:
- master

name: release

jobs:
release:
permissions: write-all
uses: mxenabled/path-tools/.github/workflows/release_manifest.yml@master
with:
dry-run: true
secrets:
OSSRH_USERNAME: not_published
OSSRH_TOKEN: not_published
GPG_SIGNING_KEY_BASE64: not_published
GPG_SIGNING_PASSPHRASE: not_published
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "3.0.1"
}
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,34 @@ Binks is a simple plugin that validates and creates release tags to launch jar p

Binks is hosted via [JitPack](https://jitpack.io/p/mxenabled/binks).

#### Gradle

<!-- x-release-please-start-version -->
_build.gradle_:
```groovy
plugins {
id: "com.github.mxenabled.binks" version "3.0.1"
}

allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
```

_settings.gradle_:
```groovy
pluginManagement {
repositories {
...
maven { url "https://jitpack.io" }
}
}
```
<!-- x-release-please-end -->

### Usage

```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group "com.mx.binks"
version "3.0.1"
version "3.0.1" // x-release-please-version
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

Expand Down
14 changes: 14 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"bootstrap-sha": "73dfa48603f88cc8174de8dd9d3ff5f7b7d4e263",
"include-v-in-tag": false,
"prerelease": false,
"release-type": "simple",
"packages": {
".": {
"extra-files": [
"build.gradle",
"README.md"
]
}
}
}