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
with:
token: ${{ secrets.GIT_ACTION_TOKEN }}
- name: git-configure
run: |
git config user.email "actions@github.com"
git config user.name "GitHub Actions"
- uses: crazy-max/ghaction-import-gpg@v4
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- uses: actions/setup-java@v2
with:
distribution: temurin

View file

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

View file

@ -1,6 +1,7 @@
# 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

10
pom.xml
View file

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