-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
24 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,28 @@ | ||
name: Logback Appender Maven CI | ||
name: Release new version to Maven | ||
|
||
on: | ||
release: | ||
types: [created] | ||
types: [published] | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
env: | ||
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
GPG_KEY: ${{ secrets.GPG_KEY }} | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
MVN_MASTER_PASSWORD: ${{ secrets.MVN_MASTER_PASSWORD }} | ||
steps: | ||
- name: Check out Git repository | ||
- name: Get the code | ||
uses: actions/checkout@v4 | ||
- name: Install Java and Maven | ||
- name: Setup Java 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 11 | ||
distribution: 'zulu' | ||
- name: Create settings-security.xml | ||
run: | | ||
echo '<settingsSecurity>' > ~/.m2/settings-security.xml | ||
echo " <master>${{ secrets.MVN_MASTER_PASSWORD }}</master>" >> ~/.m2/settings-security.xml | ||
echo '</settingsSecurity>' >> ~/.m2/settings-security.xml | ||
- name: Release Maven package | ||
uses: samuelmeuli/[email protected] | ||
with: | ||
maven_profiles: deploy | ||
gpg_private_key: ${{ secrets.GPG_KEY }} | ||
gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
nexus_username: ${{ secrets.OSSRH_USERNAME }} | ||
nexus_password: ${{ secrets.OSSRH_PASSWORD }} | ||
server_id: ossrh-nexus | ||
server-id: ossrh-nexus | ||
server-username: MAVEN_USERNAME | ||
server-password: MAVEN_PASSWORD | ||
gpg-private-key: ${{ secrets.GPG_KEY }} | ||
gpg-passphrase: GPG_PASSPHRASE | ||
- name: Publish to the Maven Central Repository | ||
env: | ||
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
run: mvn deploy --batch-mode -D skipTests --activate-profiles release --no-transfer-progress |
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