Skip to content

Commit

Permalink
fix typo in publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-toepfer committed Feb 18, 2023
1 parent 81fa622 commit 3ee90bc
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,18 @@ jobs:

- name: setup maven settings.xml
uses: whelk-io/maven-settings-xml-action@v20
env:
USERNAME: ${{ secrets.mvn_username }}
PASSWORD: ${{ secrets.mvn_password }}
with:
servers: >
[
{
"id": "ossrh",
"username": "${env.USERNAME}",
"password": "${env.PASSWORD}",
"username": "${{ secrets.mvn_username }}",
"password": "${{ secrets.mvn_password }}"
}
]
output_file: .m2/settings.xml
- name: print
run: cat ~/.m2/settings.xml

- name: build and publish
run: |
Expand Down

0 comments on commit 3ee90bc

Please sign in to comment.