Review deployment.

This commit is contained in:
Stephan Schnabel 2022-01-17 17:36:33 +01:00
parent 8e21685df8
commit 959bb02d0e
Signed by: stephan.schnabel
GPG key ID: E07AF5BA239FE543
4 changed files with 11 additions and 15 deletions

View file

@ -10,10 +10,12 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
token: ${{ secrets.GIT_ACTION_TOKEN }} token: ${{ secrets.GIT_ACTION_TOKEN }}
- name: git-configure - uses: crazy-max/ghaction-import-gpg@v4
run: | with:
git config user.email "actions@github.com" gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
git config user.name "GitHub Actions" passphrase: ${{ secrets.GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- uses: actions/setup-java@v2 - uses: actions/setup-java@v2
with: with:
distribution: temurin distribution: temurin

View file

@ -1,4 +1,4 @@
name: Build name: Snapshot
"on": "on":
workflow_dispatch: {} workflow_dispatch: {}
@ -51,4 +51,3 @@ jobs:
reporter: java-junit reporter: java-junit
list-suites: failed list-suites: failed
list-tests: failed list-tests: failed
fail-on-error: false

View file

@ -1,6 +1,7 @@
# Micronaut Logging support # Micronaut Logging support
[![Maven Central](https://img.shields.io/maven-central/v/io.kokuwa.micronaut/micronaut-logging.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.kokuwa.micronaut%22%20AND%20a:%22micronaut-logging%22) [![CI](https://github.com/kokuwaio/micronaut-logging/actions/workflows/snapshot.yaml/badge.svg)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/snapshot.yaml) [![Maven Central](https://img.shields.io/maven-central/v/io.kokuwa.micronaut/micronaut-logging.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.kokuwa.micronaut%22%20AND%20a:%22micronaut-logging%22)
[![CI](https://github.com/kokuwaio/micronaut-logging/actions/workflows/snapshot.yaml/badge.svg)](https://github.com/kokuwaio/micronaut-logging/actions/workflows/snapshot.yaml)
## Features ## Features

10
pom.xml
View file

@ -4,7 +4,7 @@
<groupId>io.kokuwa.micronaut</groupId> <groupId>io.kokuwa.micronaut</groupId>
<artifactId>micronaut-logging</artifactId> <artifactId>micronaut-logging</artifactId>
<version>3.0.3-SNAPSHOT</version> <version>3.0.4-SNAPSHOT</version>
<name>Logging Support for Micronaut</name> <name>Logging Support for Micronaut</name>
<description>Enhanced logging using MDC or request header.</description> <description>Enhanced logging using MDC or request header.</description>
@ -243,6 +243,7 @@
<tagNameFormat>@{project.version}</tagNameFormat> <tagNameFormat>@{project.version}</tagNameFormat>
<releaseProfiles>release</releaseProfiles> <releaseProfiles>release</releaseProfiles>
<localCheckout>true</localCheckout> <localCheckout>true</localCheckout>
<signTag>true</signTag>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
@ -335,13 +336,6 @@
<goals> <goals>
<goal>sign</goal> <goal>sign</goal>
</goals> </goals>
<configuration>
<!-- Prevent `gpg` from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>