Bumps [crazy-max/ghaction-import-gpg](https://github.com/crazy-max/ghaction-import-gpg) from 4.1.0 to 4.2.0. - [Release notes](https://github.com/crazy-max/ghaction-import-gpg/releases) - [Changelog](https://github.com/crazy-max/ghaction-import-gpg/blob/master/CHANGELOG.md) - [Commits](https://github.com/crazy-max/ghaction-import-gpg/compare/v4.1.0...v4.2.0) --- updated-dependencies: - dependency-name: crazy-max/ghaction-import-gpg dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
name: Release
|
|
|
|
"on": workflow_dispatch
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.4.0
|
|
with:
|
|
token: ${{ secrets.GIT_ACTION_TOKEN }}
|
|
- uses: crazy-max/ghaction-import-gpg@v4.2.0
|
|
with:
|
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
|
git_user_signingkey: true
|
|
git_commit_gpgsign: true
|
|
- uses: actions/setup-java@v3.0.0
|
|
with:
|
|
distribution: temurin
|
|
java-version: 11
|
|
cache: maven
|
|
server-id: sonatype-nexus
|
|
server-username: SERVER_USERNAME
|
|
server-password: SERVER_PASSWORD
|
|
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
gpg-passphrase: GPG_PASSPHRASE
|
|
- run: mvn -B dependency:go-offline
|
|
- run: mvn -B release:prepare
|
|
- run: mvn -B release:perform
|
|
env:
|
|
SERVER_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
|
|
SERVER_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
|
|
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|