このバージョンの GitHub Enterprise はこの日付をもって終了となりました: 2021-09-23. 重大なセキュリティの問題に対してであっても、パッチリリースは作成されません。 パフォーマンスの向上、セキュリティの改善、新機能のためには、最新バージョンのGitHub Enterpriseにアップグレードしてください。 アップグレードに関する支援については、GitHub Enterprise supportに連絡してください。

リポジトリのリリースを管理する

リリースを作成し、プロジェクトのイテレーションをバンドルしてユーザに配信できます。

Repository collaborators and people with write access to a repository can create, edit, and delete a release.

リリースの作成

  1. GitHub Enterprise Serverで、リポジトリのメインページにアクセスしてください。

  2. ファイルのリストの右で、Releases(リリース)もしくはLatest release(最新のリリース)をクリックしてください。 右側のサイドバー内のリリースセクション

  3. [Draft a new release] をクリックします。 新しいリリースのドラフトを作成するボタン

  4. Type a version number for your release. Alternatively, select an existing tag.

    タグ付きバージョンのリリース

  5. If you have created a new tag, use the drop-down menu to select the branch that contains the project you want to release. タグ付きブランチのリリース

  6. リリースのタイトルと説明を入力します。

    リリースの説明

  7. オプションで、コンパイルされたプログラムなどのバイナリファイルをリリースに含めるには、ドラッグアンドドロップするかバイナリボックスで手動で選択します。 リリースに DMG ファイルを含める

  8. リリースが不安定であり、運用準備ができていないことをユーザに通知するには、[This is a pre-release] を選択します。 リリースをプレリリースとしてマークするチェックボックス

  9. リリースを公開する準備ができている場合は、[Publish release] をクリックします。 リリースの作業を後でする場合は、[Save draft] をクリックします。 [Publish release] と [Save draft] ボタン

To learn more about GitHub CLI, see "About GitHub CLI."

  1. To create a release, use the gh release create subcommand. Replace tag with the desired tag for the release.

    gh release create tag
  2. Follow the interactive prompts. Alternatively, you can specify arguments to skip these prompts. For more information about possible arguments, see the GitHub CLI manual. For example, this command creates a prerelease with the specified title and notes.

    gh release create v1.3.2 --title "v1.3.2 (beta)" --notes "this is a beta release" --prerelease

リリースの編集

  1. GitHub Enterprise Serverで、リポジトリのメインページにアクセスしてください。
  2. ファイルのリストの右で、Releases(リリース)もしくはLatest release(最新のリリース)をクリックしてください。 右側のサイドバー内のリリースセクション
  3. ページの右側で、編集するリリースの横にある [Edit release] をクリックします。 リリースの編集
  4. Edit the details for the release in the form, then click Update release. リリースの更新

Releases cannot currently be edited with GitHub CLI.

リリースの削除

  1. GitHub Enterprise Serverで、リポジトリのメインページにアクセスしてください。
  2. ファイルのリストの右で、Releases(リリース)もしくはLatest release(最新のリリース)をクリックしてください。 右側のサイドバー内のリリースセクション
  3. 削除するリリースの名前をクリックします。 リリースを表示するリンク
  4. ページの右上にある [Delete] をクリックします。 リリースの削除ボタン
  5. [Delete this release] をクリックします。 リリースの削除を確認
  1. To delete a release, use the gh release delete subcommand. Replace tag with the tag of the release to delete. Use the -y flag to skip confirmation.

    gh release delete tag -y

問題がまだ解決していませんか?