使用服务连接在Azure管道作业中检出私有github

时间:2020-01-08 12:51:15

标签: github azure-devops azure-pipelines git-checkout

我想根据Azure文档在以下Azure管道阶段之一中签出位于同一GitHub组织中的一个私有仓库,这是我尝试过的事情:

https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/multi-repo-checkout?view=azure-devops

resources:
  repositories:
  - repository: pipelinetemplates
    type: github
    name: myorg/myrepotemplate
    endpoint: mygithub-serviceconnection
  - repository: myrepo
    type: github
    name: myorg/myrepo
    endpoint: mygithub-serviceconnection
stages:
- stage:
  jobs:
  - job: Build
    steps:
    - template: Template/build.yaml@pipelinetemplates ##It works fine
    pool:
       vmImage: 'ubuntu-latest'

- stage:
  jobs:
   - job: A
     pool:
       vmImage: 'ubuntu-latest'
     steps:
     - checkout: myrepo  ##Error-not found repo
     - task: PowerShell@2
       inputs:
        targetType: 'inline'
        script: |
          Write-Host "Fetching files"
          ls

我在结帐部分收到此错误消息:

Syncing repository: myorg/myrepo (github)
git version
git version 2.24.0
git lfs version
git-lfs/2.9.1 (GitHub; linux amd64; go 1.13.1)
git init "/home/vsts/work/1/s"
Initialized empty Git repository in /home/vsts/work/1/s/.git/
git remote add origin https://github.com/myorg/myrepo
git config gc.auto 0
git config --get-all http.https://github.com/myorg/myrepo.extraheader
git config --get-all http.proxy
git -c http.extraheader="AUTHORIZATION: basic ***" fetch --force --tags --prune --progress --no-recurse-submodules origin
remote: Repository not found.
fatal: repository 'https://github.com/myorg/myrepo/' not found
##[warning]Git fetch failed with exit code 128, back off 5.284 seconds before retry.

有人知道这个问题是什么以及如何解决?

已更新:

我可以看到该服务连接正在使用GitHub-InstallationToken(使用azure管道应用程序)。根据我上一次使用GitHub令牌时的搜索,然后一次在一个管道下获取回购协议时,我们最多只能使用一次,但是在此管道中我们两次调用GitHub服务连接。令牌似乎只能使用一次。有什么办法可以解决这个问题?

1 个答案:

答案 0 :(得分:0)

使用oauth而不是oauth2重新设置GitHub Service-Connection解决了该问题。