diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e41af6c8..3e737ee4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,10 +167,17 @@ jobs: version: ${{ github.ref_name }} - name: Create GitHub release - uses: softprops/action-gh-release@v2 + uses: ncipollo/release-action@v1 with: name: CommaFeed ${{ github.ref_name }} body: ${{ steps.changelog_reader.outputs.changes }} - draft: false - prerelease: false - files: ./artifacts/* + artifacts: ./artifacts/* + + - name: Update Docker Hub Description + uses: peter-evans/dockerhub-description@v4 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + repository: athou/commafeed + short-description: ${{ github.event.repository.description }} + readme-filepath: commafeed-server/src/main/docker/README.md diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml deleted file mode 100644 index 8392b5fb..00000000 --- a/.github/workflows/dockerhub.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Update Docker Hub Description - -on: release - -jobs: - dockerHubDescription: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Docker Hub Description - uses: peter-evans/dockerhub-description@v4 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - repository: athou/commafeed - short-description: ${{ github.event.repository.description }} - readme-filepath: commafeed-server/src/main/docker/README.md \ No newline at end of file diff --git a/commafeed-client/pom.xml b/commafeed-client/pom.xml index 753ee1ec..2fc2fe02 100644 --- a/commafeed-client/pom.xml +++ b/commafeed-client/pom.xml @@ -6,7 +6,7 @@ com.commafeed commafeed - 5.0.0-beta + 5.0.0 commafeed-client CommaFeed Client diff --git a/commafeed-server/pom.xml b/commafeed-server/pom.xml index 37712887..570a330e 100644 --- a/commafeed-server/pom.xml +++ b/commafeed-server/pom.xml @@ -6,7 +6,7 @@ com.commafeed commafeed - 5.0.0-beta + 5.0.0 commafeed-server CommaFeed Server @@ -17,7 +17,7 @@ 2.1.0 1.2.1 - h2 + h2 @@ -71,7 +71,7 @@ commafeed-${project.version} - -${quarkus.datasource.db-kind}-${os.detected.name}-${os.detected.arch}-runner + -${build.database}-${os.detected.name}-${os.detected.arch}-runner @@ -89,7 +89,7 @@ single - commafeed-${project.version}-${quarkus.datasource.db-kind}-jvm + commafeed-${project.version}-${build.database}-jvm false src/main/assembly/zip-quarkus-app.xml @@ -228,7 +228,7 @@ com.commafeed commafeed-client - 5.0.0-beta + 5.0.0 @@ -483,6 +483,9 @@ true + + h2 + @@ -510,6 +513,9 @@ mysql + + mysql + @@ -537,6 +543,9 @@ mariadb + + mariadb + @@ -564,6 +573,9 @@ postgresql + + postgresql + diff --git a/commafeed-server/src/main/assembly/zip-quarkus-app.xml b/commafeed-server/src/main/assembly/zip-quarkus-app.xml index e35ab082..01fb873a 100644 --- a/commafeed-server/src/main/assembly/zip-quarkus-app.xml +++ b/commafeed-server/src/main/assembly/zip-quarkus-app.xml @@ -4,7 +4,7 @@ zip-quarkus-app true - commafeed-${project.version}-${quarkus.datasource.db-kind} + commafeed-${project.version}-${build.database} zip diff --git a/pom.xml b/pom.xml index 7d321f30..c12985d1 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.commafeed commafeed - 5.0.0-beta + 5.0.0 CommaFeed pom