Skip to main content
ドキュメントには� �繁に更新が� えられ、その都度公開されています。本ページの翻訳はま� 未完成な部分があることをご了承く� さい。最新の情� �については、英語のドキュメンテーションをご参照く� さい。本ページの翻訳に問題がある� �合はこちらまでご連絡く� さい。

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

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

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

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

リリース管理について

You can create new releases with release notes, @mentions of contributors, and links to binary files, as well as edit or delete existing releases.

リリースの作成

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

  2. To the right of the list of files, click Releases. 右側のサイドバー内のリリースセクション

  3. [Draft a new release] をクリックします。

    Releases draft button

  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.

    Releases tagged branch

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

Releases description

  1. オプションで、コンパイルされたプログラ� などのバイナリファイルをリリースに含めるには、ドラッグアンドドロップするかバイナリボックスで手動で選択します。 リリースに DMG ファイルを含める
  2. リリースが不安定であり、運用準備ができていないことをユーザに通知するには、[This is a pre-release] を選択します。 リリースをプレリリースとしてマークするチェックボックス
  3. リリースを公開する準備ができている� �合は、[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. To the right of the list of files, click Releases. 右側のサイドバー内のリリースセクション

  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. To the right of the list of files, click Releases. 右側のサイドバー内のリリースセクション

  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