Release Jdempotent-core #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Jdempotent-core | |
# Run workflow on manually | |
on: [workflow_dispatch] | |
jobs: | |
release: | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Install Java and Maven | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Release Maven package | |
uses: samuelmeuli/[email protected] | |
with: | |
gpg_private_key: ${{ secrets.gpg_private_key }} | |
gpg_passphrase: ${{ secrets.gpg_passphrase }} | |
nexus_username: ${{ secrets.nexus_username }} | |
nexus_password: ${{ secrets.nexus_password }} | |
directory: Jdempotent-core |