GitHub动作无法正常工作,出现错误消息

时间:2020-01-16 16:51:16

标签: github github-actions

所以我收到以下错误消息,用于服务器级github动作运行:

The following team project collection is stopped: u58HQO13OlVT6yx9h86l8AENZAdSC6hwRnuQGH6RTqpb03FYH8. Start the collection and then try again. Administrator Reason: Creating Collection Host

以下是我正在使用的工作流程:

name: Java docs deploy to gh-pages

on:
  push:
    branches:
      - master
      - docs-test

jobs:
  docs:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1
      - name: Set up JDK 1.11
        uses: actions/setup-java@v1
        with:
          java-version: 1.11
      - name: Docs with gradle
        run: ./gradlew javadoc
      - name: Build and Deploy
        uses: JamesIves/github-pages-deploy-action@releases/v3
        with:
          ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
          BRANCH: gh-pages # The branch the action should deploy to.
          FOLDER: build/docs/javadoc # The folder the action should deploy.

我已经尝试过重新运行它...有什么想法吗?

1 个答案:

答案 0 :(得分:0)

道歉-这是内部GitHub错误消息。我们正在推出一个新的部署,该部署在某些工作流程中存在错误,恐怕您的工作流程是受影响的工作流程之一。

我们已将该部署回滚了-如果您现在运行工作流程,则该问题应得到解决。造成不便之处,敬请谅解!

相关问题