settings.xml Nexus username is not a secret (#31)
* settings.xml Nexus username is not a secret * Update deploy-sonatype.yml
This commit is contained in:
parent
33bc1d4e78
commit
e2a4838d5e
2 changed files with 2 additions and 3 deletions
4
.github/settings.xml
vendored
4
.github/settings.xml
vendored
|
@ -3,12 +3,12 @@
|
|||
<servers>
|
||||
<server>
|
||||
<id>sonatype-nexus-snapshots</id>
|
||||
<username>${env.NEXUS_USERNAME}</username>
|
||||
<username>kemitix</username>
|
||||
<password>${env.NEXUS_PASSWORD}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>sonatype-nexus-staging</id>
|
||||
<username>${env.NEXUS_USERNAME}</username>
|
||||
<username>kemitix</username>
|
||||
<password>${env.NEXUS_PASSWORD}</password>
|
||||
</server>
|
||||
</servers>
|
||||
|
|
1
.github/workflows/deploy-sonatype.yml
vendored
1
.github/workflows/deploy-sonatype.yml
vendored
|
@ -34,7 +34,6 @@ jobs:
|
|||
-B \
|
||||
deploy
|
||||
env:
|
||||
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
|
||||
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
|
||||
GPG_KEYNAME: ${{ secrets.GPG_KEYNAME }}
|
||||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
||||
|
|
Loading…
Reference in a new issue