You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by ni...@apache.org on 2021/03/17 13:31:18 UTC

[servicecomb-pack] branch master updated: SCB-2219 Use Github secrets to configure snapshot deploy to Nexus authentication

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

ningjiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-pack.git


The following commit(s) were added to refs/heads/master by this push:
     new 2cff748  SCB-2219 Use Github secrets to configure snapshot deploy to Nexus authentication
2cff748 is described below

commit 2cff748a45653dbc4b584b156aa88b7ee94e83de
Author: zhanglei <zh...@apache.org>
AuthorDate: Tue Mar 16 22:16:50 2021 +0800

    SCB-2219 Use Github secrets to configure snapshot deploy to Nexus authentication
    
    Infra ticket https://issues.apache.org/jira/browse/INFRA-21587
---
 .github/workflows/asf-snapshots-deploy.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/asf-snapshots-deploy.yml b/.github/workflows/asf-snapshots-deploy.yml
index 87c9b5d..af437ba 100644
--- a/.github/workflows/asf-snapshots-deploy.yml
+++ b/.github/workflows/asf-snapshots-deploy.yml
@@ -76,8 +76,8 @@ jobs:
     needs: build
     if: github.ref == 'refs/heads/master'
     env:
-      NEXUS_DEPLOY_USERNAME: ${{ secrets.NEXUS_USER }}
-      NEXUS_DEPLOY_PASSWORD: ${{ secrets.NEXUS_PW }}
+      NEXUS_DEPLOY_USERNAME: ${{ secrets.NEXUS_DEPLOY_USERNAME }}
+      NEXUS_DEPLOY_PASSWORD: ${{ secrets.NEXUS_DEPLOY_PASSWORD }}
     steps:
       - uses: actions/checkout@v2
         with: