Skip to main content

このバージョンの GitHub Enterprise はこの日付をもって終了となりました: 2022-10-12. 重大なセキュリティの問題に対してであっても、パッチリリースは作成されません。 パフォーマンスの向上、セキュリティの向上、新機能の向上を図るために、最新バージョンの GitHub Enterprise にアップグレードします。 アップグレードに関するヘルプについては、GitHub Enterprise サポートにお問い合わせく� さい

Managing releases in a repository

この記事では、次の� �目が扱われます。

You can create releases to bundle and deliver iterations of a project to users.

Who can use this feature

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

About release management

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

Creating a release

  1. On your GitHub Enterprise Server instance, navigate to the main page of the repository.

  2. ファイルの一覧の右側にある [リリース] をクリックします。 右側のサイドバーの [リリース] セクション

  3. Click Draft a new release.

    Releases draft button

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

    Releases tagged version

  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. Type a title and description for your release.

    Releases description

  7. Optionally, to include binary files such as compiled programs in your release, drag and drop or manually select files in the binaries box. Providing a DMG with the Release

  8. To notify users that the release is not ready for production and may be unstable, select This is a pre-release. Checkbox to mark a release as prerelease

  9. If you're ready to publicize your release, click Publish release. To work on the release later, click Save draft. Publish release and Draft release buttons

GitHub CLI の詳細については、「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

Editing a release

  1. On your GitHub Enterprise Server instance, navigate to the main page of the repository.

  2. ファイルの一覧の右側にある [リリース] をクリックします。 右側のサイドバーの [リリース] セクション

  3. On the right side of the page, next to the release you want to edit, click Edit release. Edit a release

  4. Edit the details for the release in the form, then click Update release. Update a release

Releases cannot currently be edited with GitHub CLI.

Deleting a release

  1. On your GitHub Enterprise Server instance, navigate to the main page of the repository.

  2. ファイルの一覧の右側にある [リリース] をクリックします。 右側のサイドバーの [リリース] セクション

  3. Click the name of the release you wish to delete. Link to view release

  4. In the upper-right corner of the page, click Delete. Delete release button

  5. Click Delete this release. Confirm delete 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