リリースの作成
-
your GitHub Enterprise Server instanceで、リポジトリのメインページにアクセスしてく� さい。
-
To the right of the list of files, click Releases.
-
[Draft a new release] をクリックします。
-
Type a version number for your release. Alternatively, select an existing tag.
-
If you have created a new tag, use the drop-down menu to select the branch that contains the project you want to release.
-
リリースのタイトルと説明を入力します。
-
オプションで、コンパイルされたプログラ� などのバイナリファイルをリリースに含めるには、ドラッグアンドドロップするかバイナリボックスで手動で選択します。
-
リリースが不安定であり、運用準備ができていないことをユーザに通知するには、[This is a pre-release] を選択します。
-
リリースを公開する準備ができている� �合は、[Publish release] をクリックします。 リリースの作業を後でする� �合は、[Save draft] をクリックします。
To learn more about GitHub CLI, see "About GitHub CLI."
-
To create a release, use the
gh release create
subcommand. Replacetag
with the desired tag for the release.gh release create tag
-
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
リリースの編集
-
your GitHub Enterprise Server instanceで、リポジトリのメインページにアクセスしてく� さい。
-
To the right of the list of files, click Releases.
-
ページの右側で、編集するリリースの横にある [Edit release] をクリックします。
-
Edit the details for the release in the form, then click Update release.
Releases cannot currently be edited with GitHub CLI.
リリースの削除
-
your GitHub Enterprise Server instanceで、リポジトリのメインページにアクセスしてく� さい。
-
To the right of the list of files, click Releases.
-
削除するリリースの名前をクリックします。
-
ページの右上にある [Delete] をクリックします。
-
[Delete this release] をクリックします。
-
To delete a release, use the
gh release delete
subcommand. Replacetag
with the tag of the release to delete. Use the-y
flag to skip confirmation.gh release delete tag -y