Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
eschleb committed Sep 9, 2024
2 parents 80f3f96 + 78c586d commit a1e44b7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/actions/mvn-setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Setup maven"
description: "Configures maven settings"

inputs:
mgnl_nexus_user:
description: “Username for magnolia nexus”
required: true
mgnl_nexus_pass:
description: “Password for magnolia nexus”
required: true

runs:
using: "composite"
steps:
- uses: s4u/maven-settings-action@v2
with:
servers: |
[{
"id": "magnolia.enterprise.group",
"username": "${{ inputs.mgnl_nexus_user }}",
"password": "${{ inputs.mgnl_nexus_pass }}"
}]

0 comments on commit a1e44b7

Please sign in to comment.