You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2022/11/01 14:24:52 UTC

[karaf-minho] branch main updated: Use standard name

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/karaf-minho.git


The following commit(s) were added to refs/heads/main by this push:
     new bd43327  Use standard name
bd43327 is described below

commit bd43327a384cf39a8db2903a7ac44b23f2f4a722
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Tue Nov 1 15:23:15 2022 +0100

    Use standard name
---
 .github/asf-deploy-settings.xml | 4 ++--
 .github/workflows/deploy.yml    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/asf-deploy-settings.xml b/.github/asf-deploy-settings.xml
index c5fdce4..6401427 100644
--- a/.github/asf-deploy-settings.xml
+++ b/.github/asf-deploy-settings.xml
@@ -22,8 +22,8 @@
   <servers>
     <server>
       <id>apache.snapshots.https</id>
-      <username>${env.NEXUS_DEPLOY_USERNAME}</username>
-      <password>${env.NEXUS_DEPLOY_PASSWORD}</password>
+      <username>${env.NEXUS_USER}</username>
+      <password>${env.NEXUS_PW}</password>
     </server>
   </servers>
 
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 94ae980..07f2392 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -28,8 +28,8 @@ jobs:
     runs-on: ubuntu-latest
     if: github.ref == 'refs/heads/main'
     env:
-      NEXUS_DEPLOY_USERNAME: ${{ secrets.NEXUS_USER }}
-      NEXUS_DEPLOY_PASSWORD: ${{ secrets.NEXUS_PW }}
+      NEXUS_USER: ${{ secrets.NEXUS_USER }}
+      NEXUS_PW: ${{ secrets.NEXUS_PW }}
     steps:
       - name: Checkout
         uses: actions/checkout@v3