Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/github/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
我可以从私有github回购中公开发布吗?_Github_Github Api - Fatal编程技术网

我可以从私有github回购中公开发布吗?

我可以从私有github回购中公开发布吗?,github,github-api,Github,Github Api,我有一个应用程序,它是在一个私有的github repo中,我想知道是否可以公开发布,这样应用程序就可以从github自动更新自己,而不是我们必须托管它 此外,我想知道是否可以从部署的应用程序中使用github api检查新的更新。一个解决方法是创建公共回购,包括: 空提交(git提交--允许空提交) 每个提交都标记了 每个标签都有一个释放 每个版本的交付(您的私人应用程序的二进制文件) 这样,您就有了一个专用于发布托管的可视repo,以及一个专用于源代码开发的私有repo。正如@VonC所

我有一个应用程序,它是在一个私有的github repo中,我想知道是否可以公开发布,这样应用程序就可以从github自动更新自己,而不是我们必须托管它


此外,我想知道是否可以从部署的应用程序中使用github api检查新的更新。

一个解决方法是创建公共回购,包括:

  • 空提交(
    git提交--允许空提交
  • 每个提交都标记了
  • 每个标签都有一个释放
  • 每个版本的交付(您的私人应用程序的二进制文件)

这样,您就有了一个专用于发布托管的可视repo,以及一个专用于源代码开发的私有repo。

正如@VonC所提到的,我们必须为此创建第二个存储库。这不是禁止的,我已经在做了。通过github工作流,我自动化了这项任务,我使用了开发/主分支,因此,当我将任何内容推送到主分支时,总是会生成一个新版本,并推送到公共的“Realease”Repo

在我的特定用例中,我正在构建一个android apk,并通过非官方的github api“hub”发布它。这样做的另一个好处是,您可以有一个额外的问题跟踪程序来跟踪外部问题和bug

name: Master CI CD

# using checkout@v2 instead of v1 caus it needs further configuration

on:
  pull_request:
    types: [closed]

jobs:
  UnitTest:
    runs-on: ubuntu-latest
    if: github.event.pull_request.merged
    steps:
      - uses: actions/checkout@v2
      - name: make executable
        run: chmod +x gradlew
      - name: Unit tests
        run: |
          ./gradlew test
  IncrementVersionCode:
    needs: UnitTest
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: set up JDK 1.8
        uses: actions/setup-java@v1
        with:
          java-version: 1.8
      - name: make executable
        run: chmod +x gradlew
      - name: increment version
        run: ./gradlew incrementVersionCode
      - name: Push new version to master
        run: |
          git config --local user.email "workflow@bot.com"
          git config --local user.name "WorkflowBot"
          git commit -m "Increment Buil version" -a
          # maybe better amend commits to avoid bot commits
  BuildArtifacts:
    needs: IncrementVersionCode
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: set up JDK 1.8
        uses: actions/setup-java@v1
        with:
          java-version: 1.8
      - name: make executable
        run: chmod +x gradlew
      - name: Build with Gradle
        run: ./gradlew build -x lint

      - name: Rename artifacts
        run: |
          cp app/build/outputs/apk/release/app-release.apk MyApp.apk
      - name: Upload Release
        uses: actions/upload-artifact@master
        with:
          name: Release Apk
          path: MyApp.apk
      - name: Upload Debug
        uses: actions/upload-artifact@master
        with:
          name: Debug Apk
          path: app/build/outputs/apk/debug/app-debug.apk

  # https://dev.to/ychescale9/running-android-emulators-on-ci-from-bitrise-io-to-github-actions-3j76
  E2ETest:
    needs: BuildArtifacts
    runs-on: macos-latest
    strategy:
      matrix:
        api-level: [21, 27]
        arch: [x86]
    steps:
      - name: checkout
        uses: actions/checkout@v2
      - name: Make gradlew executable
        run: chmod +x ./gradlew
      - name: run tests
        uses: reactivecircus/android-emulator-runner@v2
        with:
          api-level: ${{ matrix.api-level }}
          arch: ${{ matrix.arch }}
          script: ./gradlew connectedCheck

  Deploy:
    needs: E2ETest
    runs-on: ubuntu-latest
    if: github.ref == 'refs/heads/master'
    steps:
      - uses: actions/checkout@v2 # Needed for gradle file to get version information
      - name: Get Hub
        run: |
          curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.1
          cd bin
          chmod +x hub
          cd ..
      - name: Get Apk
        uses: actions/download-artifact@master
        with:
          name: Release Apk
      - name: Publish
        env:
          GITHUB_TOKEN: "${{ secrets.RELEASE_REPO_SECRET }}"
        run: |
          APP_NAME=MyApp
          VERSION_NAME=`grep -oP 'versionName "\K(.*?)(?=")' ./app/build.gradle`
          VERSION_CODE=`cat version.properties | grep "VERSION_CODE" | cut -d'=' -f2`
          FILENAME="${APP_NAME}-v${VERSION_NAME}-${VERSION_CODE}"
          TAG="v${VERSION_NAME}-${VERSION_CODE}"
          TAG="latest-master"
          echo $APP_NAME
          echo $VERSION_NAME
          echo $VERSION_CODE
          echo $FILENAME
          echo $TAG
          git clone https://github.com/MyUser/MyApp-Releases
          cd MyApp-Releases
          ./../bin/hub release delete "${TAG}" || echo "Failed deleting TAG: ${TAG}" # If release got lost catch error with message
          ./../bin/hub release create -a "../${APP_NAME}.apk" -m "Current Master Build: ${FILENAME}" -p "${TAG}"
  EvaluateCode:
    needs: Deploy
    runs-on: ubuntu-latest
    steps:
      - name: Get Hub
        run: |
          echo "TDOO: Run Jacoco for coverage, and other profiling tools"

不,目前不可能在私有存储库中有公共版本。是的,您可以使用该API检查是否有新版本--使用releases API:。有什么新闻吗?这是一个5年的问题,需要一个功能。我不明白的是,为什么我要标记每个提交?为什么我不能只做一个空的提交并标记它?我可能想得太多了,但是做
rm-rf.git
然后初始化一个新的git并强制推送到新的
open
repo“为什么我不能只做一个空的提交并标记它?”:这就是标记每个提交,因为您为每个发布创建了一个(空的或不空的)提交。您可以将发布与标记相关联,因此每次提交/发布都需要创建一个标记。在任何地方都有这样的例子吗?@hamaney不直接可见(因为涉及到一个私有存储库)GitHub操作的良好使用,肯定比我2014年的回答更为新。向上投票。