Skip to content

Commit

Permalink
Update readme, try to release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rangeid committed Sep 2, 2024
1 parent 66d19e3 commit 5a8fb53
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ jobs:
- name: Build with Maven
run: |
mvn --batch-mode clean package -PbuildKar
find . -name "*.kar"
find . -name "*.jar"
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11 for x64
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
architecture: x64
- name: Build with Maven
run: |
mvn --batch-mode clean package -PbuildKar
- name: Release with Notes
uses: softprops/action-gh-release@v1
with:
files: |
nexus-repository-ansiblegalaxy/target/*.jar
nexus-repository-ansiblegalaxy/target/*.kar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ The table below outlines what version of Nexus Repository the plugin was built a
| v0.2.2 | 3.38.0-01 / 3.39.0.01 |
| v0.3.0 | \>= 3.41.0 |
| v0.3.1 | \>= 3.41.0 |
| v0.3.3 | \>= 3.67.0 (Java 11) |
| v0.4.x (TBD) | \>= 3.69.0 (Java 17) |

If a new version of Nexus Repository is released and the plugin needs changes, a new release will be made, and this
table will be updated to indicate which version of Nexus Repository it will function against. This is done on a time
Expand Down

0 comments on commit 5a8fb53

Please sign in to comment.