release 5.0.0

This commit is contained in:
Athou
2024-08-18 08:23:30 +02:00
parent 9eb03d7455
commit cf02bf221b
6 changed files with 31 additions and 30 deletions

View File

@@ -167,10 +167,17 @@ jobs:
version: ${{ github.ref_name }} version: ${{ github.ref_name }}
- name: Create GitHub release - name: Create GitHub release
uses: softprops/action-gh-release@v2 uses: ncipollo/release-action@v1
with: with:
name: CommaFeed ${{ github.ref_name }} name: CommaFeed ${{ github.ref_name }}
body: ${{ steps.changelog_reader.outputs.changes }} body: ${{ steps.changelog_reader.outputs.changes }}
draft: false artifacts: ./artifacts/*
prerelease: false
files: ./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

View File

@@ -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

View File

@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.commafeed</groupId> <groupId>com.commafeed</groupId>
<artifactId>commafeed</artifactId> <artifactId>commafeed</artifactId>
<version>5.0.0-beta</version> <version>5.0.0</version>
</parent> </parent>
<artifactId>commafeed-client</artifactId> <artifactId>commafeed-client</artifactId>
<name>CommaFeed Client</name> <name>CommaFeed Client</name>

View File

@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.commafeed</groupId> <groupId>com.commafeed</groupId>
<artifactId>commafeed</artifactId> <artifactId>commafeed</artifactId>
<version>5.0.0-beta</version> <version>5.0.0</version>
</parent> </parent>
<artifactId>commafeed-server</artifactId> <artifactId>commafeed-server</artifactId>
<name>CommaFeed Server</name> <name>CommaFeed Server</name>
@@ -17,7 +17,7 @@
<rome.version>2.1.0</rome.version> <rome.version>2.1.0</rome.version>
<properties-plugin.version>1.2.1</properties-plugin.version> <properties-plugin.version>1.2.1</properties-plugin.version>
<quarkus.datasource.db-kind>h2</quarkus.datasource.db-kind> <build.database>h2</build.database>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
@@ -71,7 +71,7 @@
<properties> <properties>
<quarkus.package.output-name>commafeed-${project.version}</quarkus.package.output-name> <quarkus.package.output-name>commafeed-${project.version}</quarkus.package.output-name>
<quarkus.package.runner-suffix> <quarkus.package.runner-suffix>
-${quarkus.datasource.db-kind}-${os.detected.name}-${os.detected.arch}-runner -${build.database}-${os.detected.name}-${os.detected.arch}-runner
</quarkus.package.runner-suffix> </quarkus.package.runner-suffix>
</properties> </properties>
</configuration> </configuration>
@@ -89,7 +89,7 @@
<goal>single</goal> <goal>single</goal>
</goals> </goals>
<configuration> <configuration>
<finalName>commafeed-${project.version}-${quarkus.datasource.db-kind}-jvm</finalName> <finalName>commafeed-${project.version}-${build.database}-jvm</finalName>
<appendAssemblyId>false</appendAssemblyId> <appendAssemblyId>false</appendAssemblyId>
<descriptors> <descriptors>
<descriptor>src/main/assembly/zip-quarkus-app.xml</descriptor> <descriptor>src/main/assembly/zip-quarkus-app.xml</descriptor>
@@ -228,7 +228,7 @@
<dependency> <dependency>
<groupId>com.commafeed</groupId> <groupId>com.commafeed</groupId>
<artifactId>commafeed-client</artifactId> <artifactId>commafeed-client</artifactId>
<version>5.0.0-beta</version> <version>5.0.0</version>
</dependency> </dependency>
<dependency> <dependency>
@@ -483,6 +483,9 @@
<activation> <activation>
<activeByDefault>true</activeByDefault> <activeByDefault>true</activeByDefault>
</activation> </activation>
<properties>
<build.database>h2</build.database>
</properties>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
@@ -510,6 +513,9 @@
</profile> </profile>
<profile> <profile>
<id>mysql</id> <id>mysql</id>
<properties>
<build.database>mysql</build.database>
</properties>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
@@ -537,6 +543,9 @@
</profile> </profile>
<profile> <profile>
<id>mariadb</id> <id>mariadb</id>
<properties>
<build.database>mariadb</build.database>
</properties>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
@@ -564,6 +573,9 @@
</profile> </profile>
<profile> <profile>
<id>postgresql</id> <id>postgresql</id>
<properties>
<build.database>postgresql</build.database>
</properties>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -4,7 +4,7 @@
<id>zip-quarkus-app</id> <id>zip-quarkus-app</id>
<includeBaseDirectory>true</includeBaseDirectory> <includeBaseDirectory>true</includeBaseDirectory>
<baseDirectory>commafeed-${project.version}-${quarkus.datasource.db-kind}</baseDirectory> <baseDirectory>commafeed-${project.version}-${build.database}</baseDirectory>
<formats> <formats>
<format>zip</format> <format>zip</format>

View File

@@ -5,7 +5,7 @@
<groupId>com.commafeed</groupId> <groupId>com.commafeed</groupId>
<artifactId>commafeed</artifactId> <artifactId>commafeed</artifactId>
<version>5.0.0-beta</version> <version>5.0.0</version>
<name>CommaFeed</name> <name>CommaFeed</name>
<packaging>pom</packaging> <packaging>pom</packaging>