Skip to content

Commit

Permalink
release 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Athou committed Aug 18, 2024
1 parent 9eb03d7 commit cf02bf2
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 30 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
18 changes: 0 additions & 18 deletions .github/workflows/dockerhub.yml

This file was deleted.

2 changes: 1 addition & 1 deletion commafeed-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.commafeed</groupId>
<artifactId>commafeed</artifactId>
<version>5.0.0-beta</version>
<version>5.0.0</version>
</parent>
<artifactId>commafeed-client</artifactId>
<name>CommaFeed Client</name>
Expand Down
22 changes: 17 additions & 5 deletions commafeed-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.commafeed</groupId>
<artifactId>commafeed</artifactId>
<version>5.0.0-beta</version>
<version>5.0.0</version>
</parent>
<artifactId>commafeed-server</artifactId>
<name>CommaFeed Server</name>
Expand All @@ -17,7 +17,7 @@
<rome.version>2.1.0</rome.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>

<dependencyManagement>
Expand Down Expand Up @@ -71,7 +71,7 @@
<properties>
<quarkus.package.output-name>commafeed-${project.version}</quarkus.package.output-name>
<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>
</properties>
</configuration>
Expand All @@ -89,7 +89,7 @@
<goal>single</goal>
</goals>
<configuration>
<finalName>commafeed-${project.version}-${quarkus.datasource.db-kind}-jvm</finalName>
<finalName>commafeed-${project.version}-${build.database}-jvm</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/zip-quarkus-app.xml</descriptor>
Expand Down Expand Up @@ -228,7 +228,7 @@
<dependency>
<groupId>com.commafeed</groupId>
<artifactId>commafeed-client</artifactId>
<version>5.0.0-beta</version>
<version>5.0.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -483,6 +483,9 @@
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<build.database>h2</build.database>
</properties>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -510,6 +513,9 @@
</profile>
<profile>
<id>mysql</id>
<properties>
<build.database>mysql</build.database>
</properties>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -537,6 +543,9 @@
</profile>
<profile>
<id>mariadb</id>
<properties>
<build.database>mariadb</build.database>
</properties>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -564,6 +573,9 @@
</profile>
<profile>
<id>postgresql</id>
<properties>
<build.database>postgresql</build.database>
</properties>
<build>
<plugins>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion commafeed-server/src/main/assembly/zip-quarkus-app.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<id>zip-quarkus-app</id>

<includeBaseDirectory>true</includeBaseDirectory>
<baseDirectory>commafeed-${project.version}-${quarkus.datasource.db-kind}</baseDirectory>
<baseDirectory>commafeed-${project.version}-${build.database}</baseDirectory>

<formats>
<format>zip</format>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.commafeed</groupId>
<artifactId>commafeed</artifactId>
<version>5.0.0-beta</version>
<version>5.0.0</version>
<name>CommaFeed</name>
<packaging>pom</packaging>

Expand Down

0 comments on commit cf02bf2

Please sign in to comment.