Развертывание приложения реакции на страницах Git с помощью DevOps Azure - PullRequest
0 голосов
/ 13 июня 2019

Я пытаюсь развернуть свое реагирующее приложение (просто базовое приложение) на git-страницах с помощью DevOps Azure.Это сделано для того, чтобы мои руки промокли от Azure Devops.

Прежде всего я настроил свой packag.json, как показано ниже.

        {
      "name": "gitpages",
      "version": "0.1.0",
      "homepage": "https://senal.github.io/gitpage-react",
      "private": true,
      "dependencies": {
        "gh-pages": "^2.0.1",
        "react": "^16.8.6",
        "react-dom": "^16.8.6",
        "react-scripts": "3.0.1"
      },
      "scripts": {
        "start": "react-scripts start",
        "build": "react-scripts build",
        "test": "react-scripts test",
        "eject": "react-scripts eject",
        "predeploy": "npm run build",
        "deploy": "gh-pages -d build"
      },
      "eslintConfig": {
        "extends": "react-app"
      },
      "browserslist": {
        "production": [
          ">0.2%",
          "not dead",
          "not op_mini all"
        ],
        "development": [
          "last 1 chrome version",
          "last 1 firefox version",
          "last 1 safari version"
        ]
      }
    }

Пожалуйста, обратите внимание на сценарий "homepage" и "deploy".

В моих DevOps Azure я изменил файл yml, как показано ниже.

    # Node.js with React
    # Build a Node.js project that uses React.
    # Add steps that analyze code, save build artifacts, deploy, and more:
    # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript

    trigger:
    - master

    pool:
      vmImage: 'ubuntu-latest'

    steps:
    - task: NodeTool@0
      inputs:
        versionSpec: '10.x'
      displayName: 'Install Node.js'

    - script: |
        git config --global user.email "xxxx.yyyy@mymail.com"
        git config --global user.name "RSF"
        npm install
        npm run build
        npm run deploy
      displayName: 'npm install and build then deploy'

Однако, когда я запускаю сборку в DevOps, я получаю следующую ошибку:

    fatal: could not read Username for 'https://github.com': terminal prompts disabled

    npm ERR! code ELIFECYCLE
    npm ERR! errno 1
    npm ERR! gitpages@0.1.0 deploy: `gh-pages -d build`
    npm ERR! Exit status 1
    npm ERR! 
    npm ERR! Failed at the gitpages@0.1.0 deploy script.
    npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

    npm ERR! A complete log of this run can be found in:
    npm ERR!     /home/vsts/.npm/_logs/2019-06-13T12_03_34_094Z-debug.log
    ##[error]Bash exited with code '1'.

Пожалуйста, посоветуйте, что не так с моими шагами / сценариями.

Не стесняйтесь связаться со мной, если вам потребуется дополнительная информация.

ОБНОВЛЕНИЕ: Я смогсоздайте страницу, запустив

npm и запустите развертывание

из моего терминала.

Я хотел бы знать, почему мы не можем сделатьто же самое в DevOps?

Cheers, RSF

...