Review deployment.
This commit is contained in:
parent
8e21685df8
commit
959bb02d0e
4 changed files with 11 additions and 15 deletions
10
.github/workflows/release.yaml
vendored
10
.github/workflows/release.yaml
vendored
|
@ -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
|
||||
|
|
3
.github/workflows/snapshot.yaml
vendored
3
.github/workflows/snapshot.yaml
vendored
|
@ -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
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# Micronaut Logging support
|
||||
|
||||
[](https://search.maven.org/search?q=g:%22io.kokuwa.micronaut%22%20AND%20a:%22micronaut-logging%22) [](https://github.com/kokuwaio/micronaut-logging/actions/workflows/snapshot.yaml)
|
||||
[](https://search.maven.org/search?q=g:%22io.kokuwa.micronaut%22%20AND%20a:%22micronaut-logging%22)
|
||||
[](https://github.com/kokuwaio/micronaut-logging/actions/workflows/snapshot.yaml)
|
||||
|
||||
## Features
|
||||
|
||||
|
|
10
pom.xml
10
pom.xml
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue